diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-27 22:00:32 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-27 22:00:32 +0100 |
commit | cc5a652d66788b69c25cc7bef44537c8cb285b1c (patch) | |
tree | 01ea64858df031f9855de00f7cf6ebd24e2c1aaa /redshift/redshift.c | |
parent | one dir per subproject (diff) | |
download | redshift-ng-cc5a652d66788b69c25cc7bef44537c8cb285b1c.tar.gz redshift-ng-cc5a652d66788b69c25cc7bef44537c8cb285b1c.tar.bz2 redshift-ng-cc5a652d66788b69c25cc7bef44537c8cb285b1c.tar.xz |
go through todo list
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'redshift/redshift.c')
-rw-r--r-- | redshift/redshift.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/redshift/redshift.c b/redshift/redshift.c index 5bc172e..3086a83 100644 --- a/redshift/redshift.c +++ b/redshift/redshift.c @@ -312,6 +312,7 @@ run_continual_mode(void) if (disable && !done) { disabled ^= 1; disable = 0; + /* TODO if `!disabled`, reload gamma ramps and store as saved gamma ramps */ } if (exiting) { disabled = 1; @@ -412,9 +413,9 @@ run_continual_mode(void) break; /* Adjust temperature and sleep */ - if (method->apply(method_state, &colour, preserve_gamma) < 0) + if (method->apply(method_state, &colour, preserve_gamma) < 0) /* TODO (optionlly) only if colour changed */ eprintf(_("Temperature adjustment failed.")); - delay = fade_length ? SLEEP_DURATION_SHORT : SLEEP_DURATION; + delay = fade_length ? SLEEP_DURATION_SHORT : SLEEP_DURATION /* TODO (optionally) try to be more smart */; #ifndef WINDOWS location_fd = scheme.type == SOLAR_SCHEME ? provider->get_fd(provider_state) : -1; if (location_fd >= 0) |