summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c
index ebcee95b..06654223 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -267,6 +267,7 @@ static char *get_config_path(void) {
267 strcpy(config_home, home); 267 strcpy(config_home, home);
268 strcat(config_home, "/.config"); 268 strcat(config_home, "/.config");
269 setenv("XDG_CONFIG_HOME", config_home, 1); 269 setenv("XDG_CONFIG_HOME", config_home, 1);
270 free(config_home);
270 sway_log(L_DEBUG, "Set XDG_CONFIG_HOME to %s", config_home); 271 sway_log(L_DEBUG, "Set XDG_CONFIG_HOME to %s", config_home);
271 } 272 }
272 273