diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2010-01-09 16:02:45 +0100 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2010-01-09 16:02:45 +0100 |
commit | 1bb58377aa2b60f8a26b91ac95796c45d4b834de (patch) | |
tree | 3fbb00713a49c5de5ccccd8e023d14a0934a4481 /src/redshift.c | |
parent | Switch between enabled and disabled on USR1 signal. (diff) | |
download | redshift-ng-1bb58377aa2b60f8a26b91ac95796c45d4b834de.tar.gz redshift-ng-1bb58377aa2b60f8a26b91ac95796c45d4b834de.tar.bz2 redshift-ng-1bb58377aa2b60f8a26b91ac95796c45d4b834de.tar.xz |
Fix formating of help message.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/redshift.c b/src/redshift.c index 828c0c3..8f5c079 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -88,6 +88,7 @@ typedef union { "Usage: %s -l LAT:LON -t DAY:NIGHT [OPTIONS...]\n" #define HELP \ USAGE \ + " " PACKAGE_STRING "\n" \ " Set color temperature of display according to time of day.\n" \ " -g R:G:B\tAdditional gamma correction to apply\n" \ " -h\t\tDisplay this help message\n" \ @@ -95,11 +96,12 @@ typedef union { " -m METHOD\tMethod to use to set color temperature" \ " (randr or vidmode)\n" \ " -o\t\tOne shot mode (do not continously adjust" \ - " color temperature)" \ - " -r\t\tDisable initial temperature transition" \ + " color temperature)\n" \ + " -r\t\tDisable initial temperature transition\n" \ " -s SCREEN\tX screen to apply adjustments to\n" \ " -t DAY:NIGHT\tColor temperature to set at daytime/night\n" \ - " -v\t\tVerbose output\n" + " -v\t\tVerbose output\n" \ + "Please report bugs to <" PACKAGE_BUGREPORT ">\n" /* DEGREE SIGN is Unicode U+00b0 */ #define DEG_CHAR 0xb0 |