Allowed for execd commands to be spawned after abort

This commit is contained in:
Luminarys 2015-08-13 14:41:29 -05:00
parent d785cbd54c
commit ea9efc884d
5 changed files with 43 additions and 20 deletions

View file

@ -19,7 +19,7 @@ int main(int argc, char **argv) {
signal(SIGCHLD, sigchld_handle);
if (!load_config()) {
sway_abort("Unable to load config");
sway_log(L_ERROR, "Config load failed, aborting sway post init!");
}
setenv("WLC_DIM", "0", 0);
@ -29,6 +29,7 @@ int main(int argc, char **argv) {
setenv("DISPLAY", ":1", 1);
wlc_run();
return 0;
}