gnome-control-center/shell/completions/gnome-control-center.in
Georges Basile Stavracas Neto 52469cec7c window: Remove remaining overview mentions
There is no overview anymore -- Settings is always
visualizing a panel at any given time.

I just noticed that the Alt+Left shortcut was always
broken too. This will be fixed in a following commit.
2018-05-28 22:07:49 -03:00

51 lines
1.1 KiB
Text

# gnome-control-center tab completion for bash.
_gnome_control_center()
{
local cur prev command_list i v
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
case "$prev" in
*)
if [ $prev = "gnome-control-center" ] ; then
command_list="--verbose --version"
command_list="$command_list @PANELS@"
elif [ $prev = "--verbose" ]; then
command_list="@PANELS@"
fi
for i in --version @PANELS@; do
if [ $i = $prev ]; then
case $i in
keyboard)
command_list="shortcuts typing"
;;
network)
# FIXME
# The first 3 commands need an object path like
# /org/freedesktop/NetworkManager/Devices/1
command_list="connect-3g connect-8021x-wifi show-device connect-hidden-wifi create-wifi"
;;
sound)
command_list="applications effects hardware input outputs"
;;
*)
command_list=""
;;
esac
fi
done
;;
esac
for i in $command_list; do
if [ -z "${i/$cur*}" ]; then
COMPREPLY=( ${COMPREPLY[@]} $i )
fi
done
}
# load the completion
complete -F _gnome_control_center gnome-control-center