diff options
| author | eplanet <emeric.planet@gmail.com> | 2016-06-15 23:13:40 +0200 | 
|---|---|---|
| committer | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2016-06-15 23:13:40 +0200 | 
| commit | 3a807af8555c5b056e384b40910071d22dca7706 (patch) | |
| tree | a35d1a3aaec62a2ad313f14de03be689dcb8a250 /i3status.c | |
| parent | 7c0c82313ed072f99cbe3d8a56c2a62631e7ec89 (diff) | |
Default configuration paths ordered the same way as i3. Fixes #129 (#130)
Diffstat (limited to 'i3status.c')
| -rw-r--r-- | i3status.c | 23 | 
1 files changed, 11 insertions, 12 deletions
@@ -229,12 +229,7 @@ static char *resolve_tilde(const char *path) {  static char *get_config_path(void) {      char *xdg_config_home, *xdg_config_dirs, *config_path; -    /* 1: check the traditional path under the home directory */ -    config_path = resolve_tilde("~/.i3status.conf"); -    if (path_exists(config_path)) -        return config_path; - -    /* 2: check for $XDG_CONFIG_HOME/i3status/config */ +    /* 1: check for $XDG_CONFIG_HOME/i3status/config */      if ((xdg_config_home = getenv("XDG_CONFIG_HOME")) == NULL)          xdg_config_home = "~/.config"; @@ -247,15 +242,14 @@ static char *get_config_path(void) {          return config_path;      free(config_path); -    /* 3: check the traditional path under /etc */ -    config_path = SYSCONFDIR "/i3status.conf"; -    if (path_exists(config_path)) -        return sstrdup(config_path); - -    /* 4: check for $XDG_CONFIG_DIRS/i3status/config */ +    /* 2: check for $XDG_CONFIG_DIRS/i3status/config */      if ((xdg_config_dirs = getenv("XDG_CONFIG_DIRS")) == NULL)          xdg_config_dirs = "/etc/xdg"; +    /* 3: check the traditional path under the home directory */ +    config_path = resolve_tilde("~/.i3status.conf"); +    if (path_exists(config_path)) +        return config_path;      char *buf = strdup(xdg_config_dirs);      char *tok = strtok(buf, ":");      while (tok != NULL) { @@ -272,6 +266,11 @@ static char *get_config_path(void) {      }      free(buf); +    /* 4: check the traditional path under /etc */ +    config_path = SYSCONFDIR "/i3status.conf"; +    if (path_exists(config_path)) +        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)");  | 
