bash-completion.sh
branchv_0
changeset 8 b498160cc2ab
parent 7 039b3f8a3442
--- 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