initial commit

This commit is contained in:
crapStone 2020-07-22 18:47:26 +02:00
commit 363c6a18c4
11 changed files with 589 additions and 0 deletions

73
completions/lamp.bash Normal file
View file

@ -0,0 +1,73 @@
_lamp() {
local i cur prev opts cmds
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
cmd=""
opts=""
for i in ${COMP_WORDS[@]}
do
case "${i}" in
lamp)
cmd="lamp"
;;
*)
;;
esac
done
case "${cmd}" in
lamp)
opts=" -g -z -f -l -h -V -s -i -d -t --get --zero --full --list --help --version --set --increase --decrease --type "
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
fi
case "${prev}" in
--set)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-s)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--increase)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-i)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--decrease)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
-d)
COMPREPLY=($(compgen -f "${cur}"))
return 0
;;
--type)
COMPREPLY=($(compgen -W "raw lin log" -- "${cur}"))
return 0
;;
-t)
COMPREPLY=($(compgen -W "raw lin log" -- "${cur}"))
return 0
;;
*)
COMPREPLY=()
;;
esac
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0
;;
esac
}
complete -F _lamp -o bashdefault -o default lamp

10
completions/lamp.fish Normal file
View file

@ -0,0 +1,10 @@
complete -c lamp -n "__fish_use_subcommand" -s s -l set -d 'Sets brightness to given value'
complete -c lamp -n "__fish_use_subcommand" -s i -l increase -d 'Increases brightness'
complete -c lamp -n "__fish_use_subcommand" -s d -l decrease -d 'Decreases brightness'
complete -c lamp -n "__fish_use_subcommand" -s t -l type -d 'choose controller type' -r -f -a "raw lin log"
complete -c lamp -n "__fish_use_subcommand" -s g -l get -d 'Prints current brightness value'
complete -c lamp -n "__fish_use_subcommand" -s z -l zero -d 'Sets brightness to lowest value'
complete -c lamp -n "__fish_use_subcommand" -s f -l full -d 'Sets brightness to highest value'
complete -c lamp -n "__fish_use_subcommand" -s l -l list -d 'Lists all available brightness and led controllers'
complete -c lamp -n "__fish_use_subcommand" -s h -l help -d 'Prints help information'
complete -c lamp -n "__fish_use_subcommand" -s V -l version -d 'Prints version information'