commit de66ed4beb6f8091ddfb3615d79c682a7cd7f508
parent 9b41db32ec1eda4f67267346a8535c9c30e1cabb
Author: Ian Fan <ianfan0@gmail.com>
Date: Mon, 3 Dec 2018 10:53:54 +0000
config: set $XDG_CONFIG_HOME if empty
Before, it was only set if it was not set, but it should also be done
when empty.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sway/config.c b/sway/config.c
@@ -316,7 +316,8 @@ static char *get_config_path(void) {
SYSCONFDIR "/i3/config",
};
- if (!getenv("XDG_CONFIG_HOME")) {
+ char *curr_config_home = getenv("XDG_CONFIG_HOME");
+ if (!curr_config_home || !*curr_config_home) {
char *home = getenv("HOME");
char *config_home = malloc(strlen(home) + strlen("/.config") + 1);
if (!config_home) {