sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 04db58863e38c800c73736df1910b5164cb66db7
parent 79d2b0dee4362b6b2b25734ed7e24c698e7067b8
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  2 Oct 2016 18:53:38 -0400

Merge pull request #923 from gutsoo/master

moved ipc_init above config file processing.
Diffstat:
Msway/main.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/main.c b/sway/main.c @@ -213,6 +213,8 @@ int main(int argc, char **argv) { init_layout(); + ipc_init(); + if (validate) { bool valid = load_main_config(config_path, false); return valid ? 0 : 1; @@ -226,8 +228,6 @@ int main(int argc, char **argv) { free(config_path); } - ipc_init(); - if (!terminate_request) { wlc_run(); }