sway

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

commit 2e0ef533f29212b80efd69eb647893145e8356ae
parent caaff5ac543e050fe6d2208ac4eac096f80cb86d
Author: Mikkel Oscar Lyderik <mikkeloscar@gmail.com>
Date:   Tue,  5 Jan 2016 19:16:46 +0100

Init layout before checking config

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

diff --git a/sway/main.c b/sway/main.c @@ -188,13 +188,13 @@ int main(int argc, char **argv) { sway_log(L_INFO, "Starting sway version %s (%s, branch \"%s\")\n", SWAY_GIT_VERSION, SWAY_VERSION_DATE, SWAY_GIT_BRANCH); #endif + init_layout(); + if (validate) { bool valid = load_config(config_path); return valid ? 0 : 1; } - init_layout(); - if (!load_config(config_path)) { sway_log(L_ERROR, "Error(s) loading config!"); }