diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-18 09:32:30 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-18 09:32:30 +0100 |
commit | b5584a9b67b8997f45d186138d03fd26fd8ef844 (patch) | |
tree | 7d4617e100e2dbae4dad07916425f6024e51e9b5 | |
parent | specification for one time opts (diff) | |
download | blueshift-b5584a9b67b8997f45d186138d03fd26fd8ef844.tar.gz blueshift-b5584a9b67b8997f45d186138d03fd26fd8ef844.tar.bz2 blueshift-b5584a9b67b8997f45d186138d03fd26fd8ef844.tar.xz |
how to use arguments
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rwxr-xr-x | src/__main__.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/__main__.py b/src/__main__.py index 6185431..45b7292 100755 --- a/src/__main__.py +++ b/src/__main__.py @@ -273,6 +273,32 @@ output = parser.opts['--output'] if output is None: output = [] +# if `reset` +# simply reset curves +# if settings are used +# transition from those settings +# otherwise +# transition from pure settings to specified settings +# if gamma, rgb_brightness, cie_brightness or temperature is used twice +# if `reset` +# calculate settings by time or solar position +# otherwise +# run in daemon mode +# otherwise +# do one shoot configuration +# if location is used +# use solar position +# otherwise +# use time 22:00 is night 08:00 is day +# default gamma is 1:1:1 +# default rgb_brightness is 1 +# default cie_brightness is 1 +# default temperature is 3700 during night +# default temperature is 6500 during day +# ignore above if `config_file` +# ignore transitions if `panicgate` +# order of settings: gamma({cie,rgb}_brightness(temperature(id))) + ## Load extension and configurations via blueshiftrc if config_file is None: |