blob: b2caa9061bc08882b7edb5a659bcef52fe4348d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
; nightshift - A terminal user interface for redshift
; Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU General Public License as published by
; the Free Software Foundation, either version 3 of the License, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
; GNU General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program. If not, see <http://www.gnu.org/licenses/>.
(nightshift
(unargumented (options -h --help) (complete --help) (desc 'Display this help message'))
(unargumented (options -V --version) (complete --version) (desc 'Show program version'))
(unargumented (options -C --copyright) (complete --copyright) (desc 'Show program copyright information'))
(unargumented (options -W --warranty) (complete --warranty) (desc 'Show program warrantly disclaimer'))
(unargumented (options -d --daemon) (complete --daemon) (desc 'Start as daemon'))
(unargumented (options -x --reset --kill) (complete --kill) (desc 'Remove adjustment from screen'))
(unargumented (options +x --toggle) (complete --toggle) (desc 'Temporarily disable or enable adjustments'))
(unargumented (options +d --disable) (complete --disable) (desc 'Temporarily disable adjustments'))
(unargumented (options +e --enable) (complete --enable) (desc 'Re-enable adjustments'))
(unargumented (options +f --freeze) (complete --freeze) (desc 'Freeze the redshift process'))
(unargumented (options +t --thaw) (complete --thaw) (desc 'Thaw the redshift process'))
(unargumented (options -s --status) (complete --status) (desc 'Print status information'))
(argumented (options +c --script) (complete --script) (arg FILE) (files -f) (desc 'Load nightshift configuration script from specified file'))
(argumented (options -c --config) (complete --config) (arg FILE) (files -f) (desc 'Load redshift settings from specified file'))
(argumented (options -b --brightness) (complete --brightness) (arg DAY:NIGHT) (files -0) (desc 'Screen brightness to set at daytime/night'))
(argumented (options -t --temperature) (complete --version) (arg DAY:NIGHT) (files -0) (desc 'Colour temperature to set at daytime/night'))
(argumented (options -l --location) (complete --location) (arg LAT:LON|PROVIDER) (files -0) (desc 'Your current location or location provider'))
(argumented (options -m --method) (complete --method) (arg METHOD) (files -0) (desc 'Method to use to set colour temperature'))
(unargumented (options -r --no-transition) (complete --no-transition) (desc 'Disable temperature transitions'))
)
|