summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-10-02 18:53:38 -0400
committerLibravatar GitHub <noreply@github.com>2016-10-02 18:53:38 -0400
commit04db58863e38c800c73736df1910b5164cb66db7 (patch)
tree68a34cf4b5e032182d49931647b49a61707206bf
parentMerge pull request #921 from zandrmartin/patch-3 (diff)
parentmoved ipc_init above config file processing. (diff)
downloadsway-04db58863e38c800c73736df1910b5164cb66db7.tar.gz
sway-04db58863e38c800c73736df1910b5164cb66db7.tar.zst
sway-04db58863e38c800c73736df1910b5164cb66db7.zip
Merge pull request #923 from gutsoo/master
moved ipc_init above config file processing.
-rw-r--r--sway/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/main.c b/sway/main.c
index 660da18c..b924a9ab 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -213,6 +213,8 @@ int main(int argc, char **argv) {
213 213
214 init_layout(); 214 init_layout();
215 215
216 ipc_init();
217
216 if (validate) { 218 if (validate) {
217 bool valid = load_main_config(config_path, false); 219 bool valid = load_main_config(config_path, false);
218 return valid ? 0 : 1; 220 return valid ? 0 : 1;
@@ -226,8 +228,6 @@ int main(int argc, char **argv) {
226 free(config_path); 228 free(config_path);
227 } 229 }
228 230
229 ipc_init();
230
231 if (!terminate_request) { 231 if (!terminate_request) {
232 wlc_run(); 232 wlc_run();
233 } 233 }