sway

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

commit 7427ce89303a2f409ed651643bd8c6566217e7c5
parent 55ad6ca2689a0d859f13fcd1f52e6c9a356bcdee
Author: Luminarys <kizunanohikari@gmail.com>
Date:   Mon, 17 Aug 2015 17:15:05 -0500

Switched config loading order to prevent root access w/wlc

Diffstat:
Msway/config.c | 1-
Msway/main.c | 8++++----
2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/sway/config.c b/sway/config.c @@ -201,7 +201,6 @@ bool read_config(FILE *file, bool is_active) { // should be queued for later execution list_t *args = split_string(line, " "); if (!is_active && ( - strcmp("workspace", args->items[0]) == 0 || strcmp("exec", args->items[0]) == 0 || strcmp("exec_always", args->items[0]) == 0 )) { sway_log(L_DEBUG, "Deferring command %s", line); diff --git a/sway/main.c b/sway/main.c @@ -18,16 +18,16 @@ int main(int argc, char **argv) { /* Signal handling */ signal(SIGCHLD, sigchld_handle); - if (!load_config()) { - sway_log(L_ERROR, "Errors loading config!"); - } - setenv("WLC_DIM", "0", 0); if (!wlc_init(&interface, argc, argv)) { return 1; } setenv("DISPLAY", ":1", 1); + if (!load_config()) { + sway_log(L_ERROR, "Error(s) loading config!"); + } + wlc_run(); return 0;