aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2010-10-09 23:04:43 +0200
committerJon Lund Steffensen <jonlst@gmail.com>2010-10-09 23:04:43 +0200
commit158de6e293140360d82e98c653f4844493d544f4 (patch)
tree8e1f3e77f86319436065386ed33391e2f65b50e4 /src/redshift.c
parentgamma-vidmode.c: Do not call XCloseDisplay() if vidmode_start() fails as (diff)
downloadredshift-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.c12
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);
}