diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-13 19:08:55 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-13 19:08:57 -0700 |
commit | e075444663c854fde18f8d20c1bececc96a5c4ff (patch) | |
tree | d7c94df10b1d1680f2254f7cb47d9c70329578f2 /src/redshift.c | |
parent | Merge pull request #535 from jonls/cleanup (diff) | |
download | redshift-ng-e075444663c854fde18f8d20c1bececc96a5c4ff.tar.gz redshift-ng-e075444663c854fde18f8d20c1bececc96a5c4ff.tar.bz2 redshift-ng-e075444663c854fde18f8d20c1bececc96a5c4ff.tar.xz |
Change preserve option to command line switch
Changes each adjustment method to take a preserve parameter when
setting the temperature instead of parsing the preserve option
from the command line/configuration file. This helps resolve the
issues around #513:
- This allows the preserve option to be implemented as a
command-line switch (-P). This switch _disables_ the preservation
of existing gamma ramps. Having a command-line switch makes it
easier to use directly with manual or one-shot mode.
- The preserve options is on by default, so continual mode as well
as other modes will default to applying the color adjustment
on top of the current gamma ramps.
- Preserve is always disabled in reset mode so resetting works
as expected again.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/redshift.c b/src/redshift.c index 1b9a670..f4c2d65 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -603,7 +603,7 @@ run_continual_mode(const location_provider_t *provider, const transition_scheme_t *scheme, const gamma_method_t *method, gamma_state_t *method_state, - int use_fade, int verbose) + int use_fade, int preserve_gamma, int verbose) { int r; @@ -796,7 +796,8 @@ run_continual_mode(const location_provider_t *provider, } /* Adjust temperature */ - r = method->set_temperature(method_state, &interp); + r = method->set_temperature( + method_state, &interp, preserve_gamma); if (r < 0) { fputs(_("Temperature adjustment failed.\n"), stderr); @@ -1227,7 +1228,7 @@ main(int argc, char *argv[]) if (options.mode != PROGRAM_MODE_PRINT) { /* Adjust temperature */ r = options.method->set_temperature( - method_state, &interp); + method_state, &interp, options.preserve_gamma); if (r < 0) { fputs(_("Temperature adjustment failed.\n"), stderr); @@ -1256,7 +1257,8 @@ main(int argc, char *argv[]) /* Adjust temperature */ color_setting_t manual = scheme->day; manual.temperature = options.temp_set; - r = options.method->set_temperature(method_state, &manual); + r = options.method->set_temperature( + method_state, &manual, options.preserve_gamma); if (r < 0) { fputs(_("Temperature adjustment failed.\n"), stderr); options.method->free(method_state); @@ -1278,7 +1280,7 @@ main(int argc, char *argv[]) color_setting_t reset; color_setting_reset(&reset); - r = options.method->set_temperature(method_state, &reset); + r = options.method->set_temperature(method_state, &reset, 0); if (r < 0) { fputs(_("Temperature adjustment failed.\n"), stderr); options.method->free(method_state); @@ -1299,7 +1301,8 @@ main(int argc, char *argv[]) r = run_continual_mode( options.provider, location_state, scheme, options.method, method_state, - options.use_fade, options.verbose); + options.use_fade, options.preserve_gamma, + options.verbose); if (r < 0) exit(EXIT_FAILURE); } break; |