aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README41
-rw-r--r--TODO1
-rw-r--r--redshift.14
-rw-r--r--src/common.h73
-rw-r--r--src/config.c52
5 files changed, 132 insertions, 39 deletions
diff --git a/README b/README
index f556a8d..77d0b9f 100644
--- a/README
+++ b/README
@@ -8,10 +8,10 @@ NAME
redshift - Automatically adjust display colour temperature according the Sun
SYNOPSIS
- redshift [-b brightness] [-c file] [-g gamma] [-m method[:options]]
+ redshift [-b brightness] [-c file] [-D | +D] [-g gamma]
[-l latitude:longitude | -l provider[:options]]
- [-O temperature | -o | -p | -t temperature | -x] [-P | +P]
- [-r | +r] [-dv]
+ [-m method[:options]] [-P | +P] [-r | +r] [-dv]
+ [-O temperature | -o | -p | -t temperature | -x]
redshift -h
@@ -56,6 +56,14 @@ OPTIONS
-c file
Load settings from specified configuration file.
+ -D
+ Start in enabled state. (Default)
+
+ +D
+ Start in disabled state.
+
+ Ignored in one-shot mode.
+
-d
Keep the process alive and remove the colour effects
when killed.
@@ -107,12 +115,6 @@ OPTIONS
Use "-m method:help" to see available options.
- -o
- One-shot mode (do not continuously adjust colour temperature).
-
- Use this with the -P option to clear the existing gamma ramps
- before applying the new color temperature.
-
-O temperature
This is a synonym for "-O temperature:temperature".
@@ -129,8 +131,11 @@ OPTIONS
This is a synonym for "-t day:night -o".
- -p
- Print parameter and exit.
+ -o
+ One-shot mode (do not continuously adjust colour temperature).
+
+ Use this with the -P option to clear the existing gamma ramps
+ before applying the new color temperature.
-P
Reset exiting gamma ramps before applying new colour effects.
@@ -138,6 +143,9 @@ OPTIONS
+P
Preserve preexisting gamma adjustments. (Default)
+ -p
+ Print parameter and exit.
+
-r
Disable fading between colour temperatures.
@@ -152,12 +160,12 @@ OPTIONS
Values must be at least 1000 and integral.
- -v
- Enable verbose output.
-
-V
Show program implementation and verison.
+ -v
+ Enable verbose output.
+
-x
Remove adjustments from screen.
@@ -299,6 +307,11 @@ STDOUT
"Gamma: %f, %f, %f\n", <red gamma>, <green gamma>, <blue gamma>.
+ If "-v" is specified, and if running and continual mode, the program
+ will print "Status: Enabled\n" if starting in or when entering enabled
+ mode, and "Status: Disabled\n" if starting in or when entering disabled
+ mode.
+
If the "dummy" gamma ramp adjustment method is used, any time a colour
change is applied (including each fade step), the colour temperature
is output, for debugging purposes (brightness and gamma are not printed),
diff --git a/TODO b/TODO
index d311dc0..761457c 100644
--- a/TODO
+++ b/TODO
@@ -93,7 +93,6 @@ https://github.com/jonls/redshift/issues/708 Apparmor profile blocks config file
https://github.com/jonls/redshift/issues/712 it doesn't work in dell optiplex 3060m(only has intel gpu)
https://github.com/jonls/redshift/issues/713 Not working on 3rd plug n play screen in Linux Mint 19.1
https://github.com/jonls/redshift/issues/716 GeoClue2 needs a fallback
-https://github.com/jonls/redshift/issues/722 Start redshift(-gtk) disabled
https://github.com/jonls/redshift/issues/723 Tray icon disappeared [still unsolved, please look – new information!]
https://github.com/jonls/redshift/issues/725 Mouse cursor busy ~ 25 seg (Linux Mint 19.1 Tessa Xfce)
https://github.com/jonls/redshift/issues/727 redshift autostarts without known cause and keeps respawning when killed
diff --git a/redshift.1 b/redshift.1
index d817a8e..3e36174 100644
--- a/redshift.1
+++ b/redshift.1
@@ -170,6 +170,10 @@ Gamma adjustment to apply at night
\fBpreserve-gamma\fR = \fI0 or 1\fR
Reset existing gamma ramps before applying new color effect. (On by default)
.TP
+\fBstart-disabled\fR = \fI0 or 1\fR
+Start redshift in disabled state. (Off by default)
+This option is only used when started in continual mode.
+.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/common.h b/src/common.h
index b50bb6a..cc1852d 100644
--- a/src/common.h
+++ b/src/common.h
@@ -636,19 +636,74 @@ struct setting_time {
time_t value;
};
+struct setting_colour {
+ struct setting_lu temperature;
+ struct setting_f brightness;
+ struct setting_f3 gamma;
+};
+
+/**
+ * Intermediate settings representation with settings sources
+ * used for determining whether settings from the configuration
+ * file (which is parsed after the command line) applied or
+ * are specified multiple times in the configuration file
+ *
+ * Settings without a source can only be specified in the
+ * command line
+ */
struct settings {
+ /**
+ * The path to the configuration, `NULL` if unspecified
+ * (search default paths)
+ *
+ * This represents the "-c" option
+ */
const char *config_file;
- int until_death;
- struct config_ini_state config;
+ /**
+ * Whether the program should, if ran in one-shot mode,
+ * pause after applying the effect and reset them when
+ * killed
+ *
+ * This represents the "-d" option
+ */
+ int until_death;
- struct {
- struct setting_lu temperature;
- struct setting_f brightness;
- struct setting_f3 gamma;
- } day, night;
+ /**
+ * Whether the program should preserve preapplied
+ * colour calibrations
+ *
+ * This represents the "preserve-gamma" setting and
+ * "-P" (off) and "+P" (on) options
+ */
struct setting_i preserve_gamma;
- struct setting_i use_fade; /* Whether to fade between large skips in colour temperature */
+
+ /**
+ * Whether smooth transitions shall be applied when
+ * a large change in colour settings occurs
+ *
+ * This represents the "fade" setting (or the deprecated
+ * alias "transition") and "-r" (off) and "+r" (on) options
+ */
+ struct setting_i use_fade;
+
+ /**
+ * Whether the program should start in disabled mode
+ *
+ * This represents the "start-disabled" setting and
+ * "-D" (off) and "+D" (on) options
+ */
+ struct setting_i disabled;
+
+ /**
+ * The colour settings to apply at daytime
+ */
+ struct setting_colour day;
+
+ /**
+ * The colour settings to apply at nighttime
+ */
+ struct setting_colour night;
struct setting_f elevation_high; /* TODO no cmdline option */
struct setting_f elevation_low; /* TODO no cmdline option */
@@ -666,6 +721,8 @@ struct settings {
const struct location_provider *provider;
/* Arguments for location provider */
char *provider_args;
+
+ struct config_ini_state config;
};
diff --git a/src/config.c b/src/config.c
index ed61486..bb6f1d5 100644
--- a/src/config.c
+++ b/src/config.c
@@ -27,9 +27,11 @@ static void
usage(void)
{
fprintf(stderr, _("usage: %s %s\n"), argv0,
- _("[-b brightness] [-c file] [-g gamma] [-l latitude:longitude | -l provider[:options]] "
- "[-m method[:options]] [-O temperature | -o | -p | -t temperature | -x] [-P | +P] "
- "[-r | +r] [-dv] | -h | -V"));
+ _("[-b brightness] [-c file] [-D | +D] [-g gamma] "
+ "[-l latitude:longitude | -l provider[:options]] "
+ "[-m method[:options]] [-P | +P] [-r | +r] [-dv]"
+ "[-O temperature | -o | -p | -t temperature | -x] "
+ "| -h | -V"));
exit(1);
}
@@ -656,6 +658,11 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[])
settings->config_file = ARG();
break;
+ case 'D':
+ settings->disabled.source |= SETTING_CMDLINE;
+ settings->disabled.value = 0;
+ break;
+
case 'd':
settings->until_death = 1;
break;
@@ -734,17 +741,13 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[])
}
break;
- case 'o':
- mode = PROGRAM_MODE_ONE_SHOT;
- break;
-
case 'O':
mode = PROGRAM_MODE_ONE_SHOT;
set_temperature(ARG(), &settings->day.temperature, &settings->night.temperature, NULL);
break;
- case 'p':
- mode = PROGRAM_MODE_PRINT;
+ case 'o':
+ mode = PROGRAM_MODE_ONE_SHOT;
break;
case 'P':
@@ -752,6 +755,10 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[])
settings->preserve_gamma.value = 0;
break;
+ case 'p':
+ mode = PROGRAM_MODE_PRINT;
+ break;
+
case 'r':
settings->use_fade.source |= SETTING_CMDLINE;
settings->use_fade.value = 0;
@@ -761,14 +768,14 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[])
set_temperature(ARG(), &settings->day.temperature, &settings->night.temperature, NULL);
break;
- case 'v':
- verbose = 1;
- break;
-
case 'V':
printf("%s\n", VERSION_STRING);
exit(0);
+ case 'v':
+ verbose = 1;
+ break;
+
case 'x':
mode = PROGRAM_MODE_RESET;
break;
@@ -777,6 +784,11 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[])
usage();
} ARGALT('+') {
+ case 'D':
+ settings->disabled.source |= SETTING_CMDLINE;
+ settings->disabled.value = 1;
+ break;
+
case 'P':
settings->preserve_gamma.source |= SETTING_CMDLINE;
settings->preserve_gamma.value = 1;
@@ -845,6 +857,13 @@ load_from_config_ini(struct settings *settings, const char *key, char *value)
if (settings->preserve_gamma.source <= SETTING_CONFIGFILE)
settings->preserve_gamma.value = get_boolean(value, key);
+ } else if (!strcasecmp(key, "start-disabled")) {
+ if (settings->disabled.source & SETTING_CONFIGFILE)
+ weprintf(_("`start-disabled' setting specified multiple times in configuration file."));
+ settings->disabled.source |= SETTING_CONFIGFILE;
+ if (settings->disabled.source <= SETTING_CONFIGFILE)
+ settings->disabled.value = get_boolean(value, key);
+
} else if (!strcasecmp(key, "elevation-high")) {
if (settings->elevation_high.source & SETTING_CONFIGFILE)
weprintf(_("`elevation-high' setting specified multiple times in configuration file."));
@@ -945,6 +964,7 @@ load_settings(struct settings *settings, int argc, char *argv[])
mode = PROGRAM_MODE_UNTIL_DEATH;
preserve_gamma = settings->preserve_gamma.value;
use_fade = settings->use_fade.value;
+ disable ^= settings->disabled.value;
day_settings.temperature = settings->day.temperature.value;
day_settings.brightness = settings->day.brightness.value;
day_settings.gamma[0] = settings->day.gamma.value[0];
@@ -991,13 +1011,13 @@ settings_published:
/* TRANSLATORS: Append degree symbols if possible. */
printf(_("Solar elevations: day above %.1f, night below %.1f\n"),
scheme.elevation.high, scheme.elevation.low);
- } else if (scheme.type == CLOCK_SCHEME) {/
+ } else if (scheme.type == CLOCK_SCHEME) {
printf(_("Schedule:\n"));
current = first = scheme.time.periods;
do {
printf(_(" %.2f%% day at %02u:%02u:%02u\n"),
- current->day_level * 100, current->start / 60 / 60 % 24,
- current->start / 60 % 60, current->start % 60);
+ current->day_level * 100, (unsigned)(current->start / 60 / 60 % 24),
+ (unsigned)(current->start / 60 % 60), (unsigned)(current->start % 60));
} while ((current = current->next) != first);
printf(_("(End of schedule)\n"));
}