spiegel-keyman/linux/keyman-config/km-package-get.bash-completion
2021-06-24 14:54:03 +02:00

34 lines
1.1 KiB
Text

#/usr/bin/env bash
_km-package-get_completions()
{
local cur prev opts cache
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="-h --help -v --verbose -vv --veryverbose --version"
cache=${XDG_CACHE_HOME:-~/.cache}/keyman/kmpdirlist
if [[ ${cur} == -* ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
fi
words=""
if [[ ! -e $cache ]] ; then
if [[ -e ./km-package-install ]]; then
python3 -c "from imp import load_source;load_source('km_package_install', './km-package-install');from km_package_install import list_keyboards;list_keyboards()"
else
python3 -c "from imp import load_source;load_source('km_package_install', '/usr/bin/km-package-install');from km_package_install import list_keyboards;list_keyboards()"
fi
fi
if [[ -r $cache ]] ; then
for file in `cat $cache`; do words="${words} ${file}"; done
COMPREPLY=($(compgen -W "${words}" -- ${cur}))
return 0
fi
}
complete -F _km-package-get_completions km-package-get