diff -r 039b3f8a3442 -r b498160cc2ab bash-completion.sh --- a/bash-completion.sh Mon Apr 05 15:37:28 2021 +0200 +++ b/bash-completion.sh Mon Apr 05 18:09:25 2021 +0200 @@ -30,11 +30,13 @@ if [[ "$w1" == "--list-input-devices" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) elif [[ "$w1" == "--list-input-events" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) elif [[ "$w1" == "--list-windows" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) + elif [[ "$w1" == "--list-screens" ]]; then COMPREPLY=($(compgen -W "${BOOLEAN_VALUES[*]}" -- "$w0")) else OPTIONS=( "--list-input-devices" "--list-input-events" "--list-windows" + "--list-screens" ) COMPREPLY=($(compgen -W "${OPTIONS[*]}" -- "$w0")) fi