diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:19 +0000 |
commit | 6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch) | |
tree | 0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/xrandr | |
parent | Releasing progress-linux version 1:2.11-8~progress7.99u1. (diff) | |
download | bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.tar.xz bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/xrandr')
-rw-r--r-- | completions/xrandr | 183 |
1 files changed, 149 insertions, 34 deletions
diff --git a/completions/xrandr b/completions/xrandr index 16704e3..c071ab4 100644 --- a/completions/xrandr +++ b/completions/xrandr @@ -1,63 +1,178 @@ # bash completion for xrandr -*- shell-script -*- -_xrandr() +_comp_cmd_xrandr__compgen_outputs() { - local cur prev words cword - _init_completion || return + _comp_compgen_split -- "$("$1" -q 2>/dev/null | _comp_awk '/connected/ {print $1}')" +} + +_comp_cmd_xrandr__compgen_monitors() +{ + _comp_compgen_split -- "$( + "$1" --listmonitors 2>/dev/null | + command sed -ne 's/.* [0-9]*: [+\*]*\([^ ]*\).*/\1/p' + )" +} + +_comp_cmd_xrandr__compgen_providers() +{ + _comp_compgen_split -- "$("$1" --listproviders 2>/dev/null | + command sed -ne "s/.*cap:.*$2.* name:\([^ ]*\).*/\1/p")" +} + +_comp_cmd_xrandr__compgen_modes() +{ + _comp_compgen_split -- "$( + "$1" -q 2>/dev/null | command sed \ + -e "1,/^$2 / d" \ + -e '/connected/,$ d' \ + -e '/^[[:space:]]*h: / d' \ + -e '/^[[:space:]]*v: / d' \ + -e 's/\([^[:space:]]\)[[:space:]].*/\1/' + )" +} + +_comp_cmd_xrandr__compgen_all_modes() +{ + _comp_compgen_split -- "$( + "$1" -q 2>/dev/null | command sed \ + -e '/^[^[:space:]].*/ d' \ + -e '/^[[:space:]]*h: / d' \ + -e '/^[[:space:]]*v: / d' \ + -e 's/[[:space:]]*\([^[:space:]]*\)[[:space:]].*/\1/' + )" +} + +_comp_cmd_xrandr() +{ + local cur prev words cword comp_args + _comp_initialize -- "$@" || return + + local i output has_output="" + for ((i = cword - 1; i > 0; i--)); do + if [[ ${words[i]} == --output ]]; then + output=${words[i + 1]} + has_output=set + break + fi + done case "$prev" in - -display | -d | -help | -s | --size | -r | --rate | --refresh | --screen | --fb | --fbmm | \ - --dpi | --pos | --set | --scale | --transform | --crtc | --panning | --gamma | \ - --newmode | --rmmode | --addmode | --delmode) + -display | -d | -s | --size | -r | --rate | --refresh | --screen | \ + --fb | --fbmm | --pos | --set | --scale | --transform | --crtc | \ + --panning | --gamma | --newmode | --rmmode | --setmonitor) + return + ;; + --output | --addmode | --delmode | --dpi) + _comp_cmd_xrandr__compgen_outputs "$1" return ;; - --output | --left-of | --right-of | --above | --below | --same-as) - local outputs=$("$1" | awk '/connected/ {print $1}') - COMPREPLY=($(compgen -W "$outputs" -- "$cur")) + --left-of | --right-of | --above | --below | --same-as) + if [[ $has_output ]]; then + _comp_cmd_xrandr__compgen_outputs "$1" + fi return ;; --mode) - local i output - for ((i = 1; i < cword; i++)); do - if [[ ${words[i]} == --output ]]; then - output=${words[i + 1]} - break - fi - done - if [[ -v output ]]; then - local modes=$("$1" | command sed -e "1,/^$output / d" \ - -e "/connected/,$ d" \ - -e "s/\([^[:space:]]\)[[:space:]].*/\1/") - COMPREPLY=($(compgen -W "$modes" -- "$cur")) + if [[ $has_output ]]; then + _comp_cmd_xrandr__compgen_modes "$1" "$output" fi return ;; -o | --orientation) - COMPREPLY=($(compgen -W 'normal inverted left right 0 1 2 3' -- \ - "$cur")) + _comp_compgen -- -W 'normal inverted left right 0 1 2 3' return ;; --reflect) - COMPREPLY=($(compgen -W 'normal x y xy' -- "$cur")) + if [[ $has_output ]]; then + _comp_compgen -- -W 'normal x y xy' + fi return ;; --rotate) - COMPREPLY=($(compgen -W 'normal inverted left right' -- "$cur")) + if [[ $has_output ]]; then + _comp_compgen -- -W 'normal inverted left right' + fi return ;; - --setprovideroutputsource | --setprovideroffloadsink) - local providers=$("$1" --listproviders 2>/dev/null | - command sed -ne 's/.* name:\([^ ]*\).*/\1/p') - COMPREPLY=($(compgen -W "$providers" -- "$cur")) - # TODO 2nd arg needed, is that a provider as well? + --filter) + if [[ $has_output ]]; then + _comp_compgen -- -W 'bilinear nearest' + fi + return + ;; + --setprovideroutputsource) + _comp_cmd_xrandr__compgen_providers "$1" "Sink Output" + return + ;; + --setprovideroffloadsink) + _comp_cmd_xrandr__compgen_providers "$1" "Source Offload" + return + ;; + --delmonitor) + _comp_cmd_xrandr__compgen_monitors "$1" return ;; esac - COMPREPLY=($(compgen -W '$("$1" -help 2>&1 | - command sed -e "s/ or / /g" -e "s/<[^>]*>]//g" | _parse_help -)' \ - -- "$cur")) + # second arguments + if ((cword >= 2)); then + case "${words[cword - 2]}" in + --set) + return + ;; + --addmode) + _comp_cmd_xrandr__compgen_all_modes "$1" + return + ;; + --delmode) + _comp_cmd_xrandr__compgen_modes "$1" "${words[cword - 1]}" + return + ;; + --setmonitor) + _comp_compgen -- -W 'auto' + return + ;; + --setprovideroutputsource) + _comp_cmd_xrandr__compgen_providers "$1" "Source Output" + _comp_compgen -a -- -W "0x0" + return + ;; + --setprovideroffloadsink) + _comp_cmd_xrandr__compgen_providers "$1" "Sink Offload" + _comp_compgen -a -- -W "0x0" + return + ;; + esac + fi + + # third arguments + if ((cword >= 3)); then + case "${words[cword - 3]}" in + --setmonitor) + _comp_compgen -c "${cur##*,}" -i xrandr outputs "$1" + _comp_compgen -ac "${cur##*,}" -- -W "none" + _comp_delimited , -W '"${COMPREPLY[@]}"' + return + ;; + esac + fi + + local options + if [[ $has_output ]]; then + _comp_compgen -v options help - <<<"$( + "$1" --help 2>/dev/null | + command sed -e 's/ or /\n /g' -e 's/<[^>]*>]//g' + )" + else + # if no output is specified, remove per-output options + _comp_compgen -v options help - <<<"$( + "$1" --help 2>/dev/null | + command sed -e '/^ -/!d' -e 's/ or /\n /g' -e 's/<[^>]*>]//g' + )" + fi + + _comp_compgen -- -W '"${options[@]}"' } && - complete -F _xrandr xrandr + complete -F _comp_cmd_xrandr xrandr # ex: filetype=sh |