aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--redshift.13
-rw-r--r--src/options.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/redshift.1 b/redshift.1
index 8847ab8..34b59ea 100644
--- a/redshift.1
+++ b/redshift.1
@@ -141,6 +141,9 @@ Gamma adjustment to apply at daytime
\fBgamma-night\fR = \fIR\fB:\fIG\fB:\fIB\fR
Gamma adjustment to apply at night
.TP
+\fBpreserve-gamma\fR = \fI0 or 1\fR
+Reset existing gamma ramps before applying new color effect. (On by default)
+.TP
\fBadjustment\-method\fR = \fIname\fR
Select adjustment method. Options for the adjustment method can be
given under the configuration file heading of the same name.
diff --git a/src/options.c b/src/options.c
index 729140e..aadd317 100644
--- a/src/options.c
+++ b/src/options.c
@@ -572,6 +572,10 @@ parse_config_file_option(
return -1;
}
}
+ } else if (strcasecmp(key, "preserve-gamma") == 0) {
+ if (options->preserve_gamma == 1) {
+ options->preserve_gamma = !!atoi(value);
+ }
} else if (strcasecmp(key, "adjustment-method") == 0) {
if (options->method == NULL) {
options->method = find_gamma_method(