diff options
author | Yacine Hmito <[email protected]> | 2015-12-23 12:22:48 +0100 |
---|---|---|
committer | Yacine Hmito <[email protected]> | 2015-12-23 12:22:48 +0100 |
commit | f02cf75ff3b759c530f195d320c722bb30380155 (patch) | |
tree | 336c267f3f52e416a3406d487ec7a30b54e93250 /sway/config.c | |
parent | 23df7ed502b20bf264d85af2aef8c933e393f9ee (diff) |
Use SYSCONFDIR as recommended
- swaylock config path not hardcoded anymore
- the unusual and weird FALLBACK_CONFIG_DIR is no more
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c index 853a7111..1973de02 100644 --- a/sway/config.c +++ b/sway/config.c @@ -153,8 +153,8 @@ static char *get_config_path(void) { "$XDG_CONFIG_HOME/sway/config", "$HOME/.i3/config", "$XDG_CONFIG_HOME/i3/config", - FALLBACK_CONFIG_DIR "/config", - "/etc/i3/config", + "${CMAKE_INSTALL_FULL_SYSCONFDIR}/sway/config", + "${CMAKE_INSTALL_FULL_SYSCONFDIR}/i3/config", }; if (!getenv("XDG_CONFIG_HOME")) { |