diff options
| author | Mattias Andrée <maandree@operamail.com> | 2014-03-09 20:57:06 +0100 | 
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2014-03-09 20:57:06 +0100 | 
| commit | 3e9699d6b6afd4e6d2db4aa5e6e3a8bac6ee824f (patch) | |
| tree | f8801c5d98b4daa781cf99661bd225ab569d66d6 /examples | |
| parent | something on the syntax (diff) | |
| download | blueshift-3e9699d6b6afd4e6d2db4aa5e6e3a8bac6ee824f.tar.gz blueshift-3e9699d6b6afd4e6d2db4aa5e6e3a8bac6ee824f.tar.bz2 blueshift-3e9699d6b6afd4e6d2db4aa5e6e3a8bac6ee824f.tar.xz  | |
improve monitor search to be able to list an exact number of monitors
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/lisp-esque.conf | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/lisp-esque.conf b/examples/lisp-esque.conf index 3a65c3b..c01498c 100644 --- a/examples/lisp-esque.conf +++ b/examples/lisp-esque.conf @@ -26,6 +26,9 @@  	;    For monitors with output name DVI-0:           (monitors :crtc "DVI-0")  	;    For monitors with output name DVI-0 or VGA-0:  (monitors :crtc ("DVI-0" "VGA-0"))  	;    For monitors with size 364 mm × 291 mm:        (monitors :size (364 291)) +	;    If you want :crtc or :size to add an exact number of monitors +	;    (non-found will monitors be skipped when it is time to use them) +	;    you can use :crtc:n or :size:n, where n is the number of monitors.  	; Geographical coodinates: latitude longitude (northwards and eastwards in degrees) @@ -212,8 +215,9 @@  	; blue respectively. Because it is only one argument it  	; applies all day long as well.  	#(resolution:output (:eval (o_size o_size o_size))) ### -- ADVANCED LEVEL -- -	;    This is evaluated into: +	;    This is evaluated into any of:  	;        (resolution:output (65536 65536 65536)) +	;        (resolution:output (eval o_size o_size o_size))  	;    As always you can control the monitors individually:  	;        (resolution:output (:eval ((o_size o_size o_size) (o_size o_size o_size))))  	;        This evaluated into:  | 
