From bd086885a56ac6e6e8e4e18dde287f58040e6d63 Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Tue, 30 Dec 2014 22:04:08 -0500 Subject: 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. --- src/redshift.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'src/redshift.c') 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: -- cgit v1.2.3-70-g09d2