diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2010-10-09 23:04:43 +0200 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2010-10-09 23:04:43 +0200 |
commit | 158de6e293140360d82e98c653f4844493d544f4 (patch) | |
tree | 8e1f3e77f86319436065386ed33391e2f65b50e4 /src/redshift.c | |
parent | gamma-vidmode.c: Do not call XCloseDisplay() if vidmode_start() fails as (diff) | |
download | redshift-ng-158de6e293140360d82e98c653f4844493d544f4.tar.gz redshift-ng-158de6e293140360d82e98c653f4844493d544f4.tar.bz2 redshift-ng-158de6e293140360d82e98c653f4844493d544f4.tar.xz |
Add info on the neutral color temperature (6500K) in help output.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/redshift.c b/src/redshift.c index 163a49e..fbc3d0f 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -301,6 +301,16 @@ print_help(const char *program_name) fputs("\n", stdout); /* TRANSLATORS: help output 5 */ + printf(_("The neutral temperature is %uK. Using this value will not\n" + "change the color temperature of the display. Setting the\n" + "color temperature to a value higher than this results in\n" + "more blue light, and setting a lower value will result in\n" + "more red light.\n"), + NEUTRAL_TEMP); + + fputs("\n", stdout); + + /* TRANSLATORS: help output 6 */ printf(_("Default values:\n\n" " Daytime temperature: %uK\n" " Night temperature: %uK\n"), @@ -308,7 +318,7 @@ print_help(const char *program_name) fputs("\n", stdout); - /* TRANSLATORS: help output 6 */ + /* TRANSLATORS: help output 7 */ printf(_("Please report bugs to <%s>\n"), PACKAGE_BUGREPORT); } |