60 lines
2.0 KiB
Plaintext
Raw Normal View History

# bash completion for xrandr -*- shell-script -*-
2009-05-27 18:39:19 +02:00
_xrandr()
{
local cur prev words cword
_init_completion || return
local output modes
2009-05-27 18:39:19 +02:00
case "$prev" in
2011-09-30 22:17:48 +04:00
--output|--left-of|--right-of|--above|--below|--same-as)
local outputs=$( xrandr | awk '/connected/ {print $1}' )
COMPREPLY=( $( compgen -W "$outputs" -- "$cur" ) )
return
2009-10-04 19:42:50 +02:00
;;
--mode)
for(( i = 1; i < cword; i++ )); do
if [[ "${words[i]}" == --output ]]; then
output=${words[i+1]}
2009-10-04 19:42:50 +02:00
break
fi
done
modes=$( xrandr | sed -e "1,/$output/ d" \
-e "/connected/,$ d" | awk '{print $1}' )
COMPREPLY=( $( compgen -W "$modes" -- "$cur" ) )
return
2009-10-04 19:42:50 +02:00
;;
2011-09-30 22:17:48 +04:00
-o|--orientation)
COMPREPLY=( $( compgen -W 'normal inverted left right 0 1 2 3' -- \
"$cur" ) )
return
2011-09-30 22:17:48 +04:00
;;
--reflect)
COMPREPLY=( $( compgen -W 'normal x y xy' -- "$cur" ) )
return
2011-09-30 22:17:48 +04:00
;;
--rotate)
COMPREPLY=( $( compgen -W 'normal inverted left right' -- "$cur" ) )
return
2011-09-30 22:17:48 +04:00
;;
2009-10-04 19:42:50 +02:00
esac
2009-05-27 18:39:19 +02:00
case $cur in
2009-10-04 19:42:50 +02:00
*)
COMPREPLY=( $( compgen -W '-display -help --orientation --query
--size --rate --version -x -y --screen --verbose --dryrun
--q1 --q12 --nograb --prop --properties --fb --fbmm --dpi
--output --auto --mode --preferred --pos --rate --refresh
--reflect --rotate --left-of --right-of --above --below
--same-as --set --scale --transform --off --crtc --panning
--gamma --brightness --primary --noprimary --newmode --rmmode
--addmode --delmode' -- "$cur" ) )
return
2009-10-04 19:42:50 +02:00
;;
esac
2009-05-27 18:39:19 +02:00
} &&
complete -F _xrandr xrandr
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh