diff options
author | Ingo Bürk <admin@airblader.de> | 2019-01-27 22:22:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-27 22:22:34 +0100 |
commit | e36966d49cb2db0be24baf845aedcde109841ff8 (patch) | |
tree | e6b050af09cbc882079093998309c8d2462493e5 /i3status.c | |
parent | 3d5c908af51e3aa03ca79ff66b8882b57ccda610 (diff) | |
parent | 0f4fbf70afc607e2dcb14ef8292911042490d1dc (diff) |
Merge pull request #333 from stapelberg/sysconfdir
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; } |