about summary refs log tree commit diff
path: root/Completion/X/Command/_vnc
blob: 094fa0d9ea42d3b693854876c90adadf8ba8f250 (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
#compdef vncserver vncviewer

local displays args
displays=( ~/.vnc/$HOST:?.pid(N:r:t:s/$HOST//) )
displays=( \\${^displays} ) 

case $service in
  vncserver)
    # currently lacking Xvnc arguments
    _arguments \
      - start \
	'-name:desktop name:_x_name' \
	'-geometry:geometry:(1600x1200 1280x1024 1152x864 1024x768 800x600 640x480)' \
	'-depth:pixel depth:(8 16 24 32)' \
	'-pixelformat:pixel format' \
	'1::display number:_guard ":[0-9]#"' \
      - kill \
	"-kill:display number:($displays)" \
      - help \
	'-help'
  ;;
  vncviewer) 
    # should allow list for -encodings
    _xt_arguments -shared -viewonly -fullscreen -bgr233 -owncmap -truecolour \
      '-encodings:encodings:(copyrect hextile corre rre raw)' \
      '-depth:depth' \
      '-passwd:file:_files' \
      '(1)-listen:display number' \
      '(-listen)1::display:_x_display'
  ;;
esac