aboutsummaryrefslogtreecommitdiff
path: root/sway/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/main.c')
-rw-r--r--sway/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/main.c b/sway/main.c
index 03c7e2b3..6e66ef3a 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -29,7 +29,6 @@ void load_config() {
int main(int argc, char **argv) {
init_log(L_DEBUG); // TODO: Control this with command line arg
- load_config();
init_layout();
static struct wlc_interface interface = {
@@ -58,7 +57,10 @@ int main(int argc, char **argv) {
if (!wlc_init(&interface, argc, argv)) {
return 1;
}
+
setenv("DISPLAY", ":1", 1);
+ load_config();
+
wlc_run();
return 0;
}