diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-21 00:51:47 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-21 00:51:47 +0100 |
commit | 844e0cd22c9623c566871d2ecb9c50831e2524ba (patch) | |
tree | 5528126291f275eee5ca33ba6b89e797558eede2 /completion | |
parent | m (diff) | |
download | blueshift-844e0cd22c9623c566871d2ecb9c50831e2524ba.tar.gz blueshift-844e0cd22c9623c566871d2ecb9c50831e2524ba.tar.bz2 blueshift-844e0cd22c9623c566871d2ecb9c50831e2524ba.tar.xz |
fix make uninstall rule + add shell auto completion
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'completion')
-rw-r--r-- | completion | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/completion b/completion new file mode 100644 index 0000000..e63d1af --- /dev/null +++ b/completion @@ -0,0 +1,20 @@ +(blueshift + (multiple unargumented + ((options -p --panic-gate --panicgate) (complete --panicgate) (desc 'Applies the settings directly instead of transitioning into the initial settings')) + ((options -h -? --help) (complete --help) (desc 'Prints help information')) + ((options -C --copying --copyright) (complete --copyright) (desc 'Prints copyright information')) + ((options -W --warranty) (complete --warranty) (desc 'Prints non-warranty information')) + ((options -v --version) (complete --version) (desc 'Prints the name version of the program')) + ((options -r --reset) (complete --reset) (desc 'Transition from the specified settings to clean settings')) + ) + (multiple argumented + ((options -c --configurations) (complete --configurations) (arg SCRIPT) (files -f) (desc 'Select configuration script')) + ((options -g --gamma) (complete --gamma) (arg RGB|R:G:B) (files -0) (desc 'Apply gamma correction to the colour curves')) + ((options -b --brightness) (complete --brightness) (arg RGB|R:G:B) (files -0) (desc 'Change brightness using sRGB')) + ((options +b ++brightness) (complete ++brightness) (arg Y) (files -0) (desc 'Change brightness using CIE xyY')) + ((options -t --temperature) (complete --temperature) (arg KELVIN) (files -0) (desc 'Change colour temperature')) + ((options -l --location) (complete --location) (arg LAT:LON) (files -0) (desc 'Specify your geographical location')) + ((options -o --output --crtc) (complete --output) (arg CRTC) (files -0) (desc 'Select CRTC to apply changes to')) + ) +) + |