summaryrefslogtreecommitdiff
path: root/etc/completions/_fbi
blob: 120e5160b455270d9ef7c5c0411e7b8b6bc18996 (plain)
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
#compdef fbi
## completion for fbi 2.07-1, based on fbi(1)
## Daniel Friesel <derf@derf.homelinux.org>

local arguments

arguments=(
	'-h[show help]'
	'-d[set framebuffer device]:framebuffer device:_path_files -W /dev -g "fb*"'
	'-m[set video mode]:video mode: '
	'-v[verbose (show status line)]'
	'-P[enable textreading mode]'
	'-t[slideshow timeout]:time: '
	'-g[gamma correction]:gamma: '
	'-n[select PhotoCD resolution]:resolution:(1 2 3 4 5)'
	'-s[set scroll steps]:pixels: '
	'-f[set font]:font: '
	'-a[autozoom]'
	'--autoup[scale up only]'
	'--autodown[scale down only]'
	'-u[randomize filename order]'
	'-e[enable editing]'
	'-b[editing: create backup files]'
	'-p[editing: preserve timestamps]'
	'--comments[Show comment tag instead of filename]'
	'*:file:_files'
)

_arguments -s $arguments