aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2011-03-29 23:57:53 +0200
committerJon Lund Steffensen <jonlst@gmail.com>2011-03-29 23:57:53 +0200
commit6c1986b51a3a756e4760714b994f6083101d3466 (patch)
tree836e311b3ab95b6ae5a1089f7664b42949e23929
parentMerge Geoclue location provider by Mathieu Trudel-Lapierre with some tweaks. (diff)
downloadredshift-ng-6c1986b51a3a756e4760714b994f6083101d3466.tar.gz
redshift-ng-6c1986b51a3a756e4760714b994f6083101d3466.tar.bz2
redshift-ng-6c1986b51a3a756e4760714b994f6083101d3466.tar.xz
config: Look in %userprofile%/.config/redshift.conf on windows platform.
-rw-r--r--src/config-ini.c6
1 files changed, 6 insertions, 0 deletions
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);