aboutsummaryrefslogtreecommitdiff
path: root/sway/config.c
diff options
context:
space:
mode:
authorYacine Hmito <yacine.hmito@gmail.com>2015-12-01 01:23:16 +0100
committerYacine Hmito <yacine.hmito@gmail.com>2015-12-01 19:41:44 +0100
commitf3f77f9ff1912a2b05304ba8a5278f42e16b6c1b (patch)
treedc64bfc3a3fe77cf607c2251f61caa3cb6cdc4a1 /sway/config.c
parent09feef89eea03527c9c81b8d15fe8c1474942209 (diff)
FALLBACK_CONFIG_DIR did not work. Fixed.
- Flag was ignored. Now it's taken into account. - Missing trailing slashes in path now behaves properly.
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index dac3e8f8..6a1d172b 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -136,7 +136,7 @@ static char *get_config_path(void) {
"$XDG_CONFIG_HOME/sway/config",
"$HOME/.i3/config",
"$XDG_CONFIG_HOME/i3/config",
- FALLBACK_CONFIG_DIR "config",
+ FALLBACK_CONFIG_DIR "/config",
"/etc/i3/config",
};