forked from wertarbyte/autorandr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_completion
44 lines (37 loc) · 884 Bytes
/
bash_completion
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
42
43
# autorandr/auto-disper completion by Maciej 'macieks' Sitarz <macieks@freesco.pl>
_autorandr ()
{
local cur prev opts lopts prfls
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="-h -c -s -l -d"
lopts="--help --change --save --load --default --force --fingerprint"
prfls="`find ~/.autorandr/* -maxdepth 1 -type d -printf '%f\n'`"
case "${cur}" in
--*)
COMPREPLY=( $( compgen -W "${lopts}" -- $cur ) )
return 0
;;
-*)
COMPREPLY=( $( compgen -W "${opts} ${lopts}" -- $cur ) )
return 0
;;
*)
if [ $COMP_CWORD -eq 1 ]; then
COMPREPLY=( $( compgen -W "${opts} ${lopts}" -- $cur ) )
fi
;;
esac
case "${prev}" in
-l|--load|-d|--default)
COMPREPLY=( $( compgen -W "${prfls}" ) )
return 0
;;
*)
;;
esac
return 0
}
complete -F _autorandr autorandr
complete -F _autorandr auto-disper