diff options
author | Michael Stapelberg <michael@stapelberg.de> | 2019-01-27 22:14:16 +0100 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2019-01-27 22:19:12 +0100 |
commit | 0f4fbf70afc607e2dcb14ef8292911042490d1dc (patch) | |
tree | e6b050af09cbc882079093998309c8d2462493e5 /i3status.c | |
parent | 3d5c908af51e3aa03ca79ff66b8882b57ccda610 (diff) |
fix: use SYSCONFDIR in error message
Diffstat (limited to 'i3status.c')
-rw-r--r-- | i3status.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -284,8 +284,7 @@ static char *get_config_path(void) { return sstrdup(config_path); die("Unable to find the configuration file (looked at " - "~/.i3status.conf, $XDG_CONFIG_HOME/i3status/config, " - "/etc/i3status.conf and $XDG_CONFIG_DIRS/i3status/config)"); + "~/.i3status.conf, $XDG_CONFIG_HOME/i3status/config, " SYSCONFDIR "/i3status.conf and $XDG_CONFIG_DIRS/i3status/config)"); return NULL; } |