From 6c1986b51a3a756e4760714b994f6083101d3466 Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Tue, 29 Mar 2011 23:57:53 +0200 Subject: config: Look in %userprofile%/.config/redshift.conf on windows platform. --- src/config-ini.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/config-ini.c') diff --git a/src/config-ini.c b/src/config-ini.c index 5231ba5..eae19c7 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -49,6 +49,12 @@ open_config_file(const char *filepath) env[0] != '\0') { snprintf(cp, sizeof(cp), "%s/redshift.conf", env); filepath = cp; +#ifdef _WIN32 + } else if ((env = getenv("userprofile")) != NULL && env[0] != '\0') { + snprintf(cp, sizeof(cp), + "%s/.config/redshift.conf", env); + filepath = cp; +#endif } else if ((env = getenv("HOME")) != NULL && env[0] != '\0') { snprintf(cp, sizeof(cp), "%s/.config/redshift.conf", env); -- cgit v1.2.3-70-g09d2