diff options
Diffstat (limited to 'src/config-ini.c')
-rw-r--r-- | src/config-ini.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/config-ini.c b/src/config-ini.c index 4541a0f..3183ba1 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -22,6 +22,10 @@ #include <stdlib.h> #include <string.h> #include <errno.h> +#ifndef _WIN32 +# include <pwd.h> +# include <unistd.h> +#endif #include "config-ini.h" @@ -59,6 +63,14 @@ open_config_file(const char *filepath) snprintf(cp, sizeof(cp), "%s/.config/redshift.conf", env); filepath = cp; +#ifndef _WIN32 + } else { + struct passwd *pwd = getpwuid(getuid()); + char *home = pwd->pw_dir; + snprintf(cp, sizeof(cp), + "%s/.config/redshift.conf", home); + filepath = cp; +#endif } if (filepath != NULL) { |