aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-30 22:04:08 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2015-01-04 13:50:53 -0500
commitbd086885a56ac6e6e8e4e18dde287f58040e6d63 (patch)
tree9fda0f2bb66f46f2cc0256ac5e9fd8c63b98b40d /src/redshift.c
parentFix #153: geoclue2: Set desktop id on GeoClue2 client (diff)
downloadredshift-ng-bd086885a56ac6e6e8e4e18dde287f58040e6d63.tar.gz
redshift-ng-bd086885a56ac6e6e8e4e18dde287f58040e6d63.tar.bz2
redshift-ng-bd086885a56ac6e6e8e4e18dde287f58040e6d63.tar.xz
Fix #152: redshift: Loop in reset/manual/one-shot mode with Quartz
The gamma adjustments made with the Quartz (OSX) method are tied to the process so when we exit, the gamma adjustments are reset. Therefore we need to run a loop that breaks on CTRL-C, after the gamma adjustments are made.
Diffstat (limited to 'src/redshift.c')
-rw-r--r--src/redshift.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/redshift.c b/src/redshift.c
index 3fbbe9c..a813956 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -1364,6 +1364,14 @@ main(int argc, char *argv[])
method->free(&state);
exit(EXIT_FAILURE);
}
+
+ /* In Quartz (OSX) the gamma adjustments will automatically
+ revert when the process exits. Therefore, we have to loop
+ until CTRL-C is received. */
+ if (strcmp(method->name, "quartz") == 0) {
+ fputs(_("Press ctrl-c to stop...\n"), stderr);
+ pause();
+ }
}
break;
case PROGRAM_MODE_MANUAL:
@@ -1381,6 +1389,13 @@ main(int argc, char *argv[])
exit(EXIT_FAILURE);
}
+ /* In Quartz (OSX) the gamma adjustments will automatically
+ revert when the process exits. Therefore, we have to loop
+ until CTRL-C is received. */
+ if (strcmp(method->name, "quartz") == 0) {
+ fputs(_("Press ctrl-c to stop...\n"), stderr);
+ pause();
+ }
}
break;
case PROGRAM_MODE_RESET:
@@ -1393,6 +1408,14 @@ main(int argc, char *argv[])
method->free(&state);
exit(EXIT_FAILURE);
}
+
+ /* In Quartz (OSX) the gamma adjustments will automatically
+ revert when the process exits. Therefore, we have to loop
+ until CTRL-C is received. */
+ if (strcmp(method->name, "quartz") == 0) {
+ fputs(_("Press ctrl-c to stop...\n"), stderr);
+ pause();
+ }
}
break;
case PROGRAM_MODE_CONTINUAL: