aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
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: