diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-01 16:46:18 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-01 16:46:18 +0100 |
commit | 43110e5425c07ae5b8728730b31028753d5388b2 (patch) | |
tree | 4b7f3ea86ec205e9e90e299ebfc6f37cc31143fa | |
parent | xmobar example derp: %.2f % dayness => %i % dayness*100 (diff) | |
download | blueshift-43110e5425c07ae5b8728730b31028753d5388b2.tar.gz blueshift-43110e5425c07ae5b8728730b31028753d5388b2.tar.bz2 blueshift-43110e5425c07ae5b8728730b31028753d5388b2.tar.xz |
extend doc for sleepmode example
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | examples/sleepmode | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/sleepmode b/examples/sleepmode index 5877161..ddae9ae 100644 --- a/examples/sleepmode +++ b/examples/sleepmode @@ -2,7 +2,7 @@ # This example graciously fades out the screen on start and # in on exit. It is a nice alternative to turning off the -# monitor, just press Control+C when you wake up. +# monitor, just press Control+c when you wake up. # The (zero-based) index of the monitors (CRTC:s) to apply @@ -26,6 +26,12 @@ monitors = [] gamma_red, gamma_green, gamma_blue = [1], [1], [1] # The red, green and blue brightness, respectively. +# If you zero out green and blue and leave only red, you +# will be able to see what is on the as long as their is +# a difference in the red channel, and it will not affect +# your night vision. This is perfect if want to be able +# able read something on the screen during night (perhaps +# a clock) or directly when you wake up. redness, greenness, blueness = [0.25], [0], [0] |