aboutsummaryrefslogtreecommitdiffstats
path: root/bash-completion
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2013-01-04 13:05:36 -0500
committerDave Reisner <dreisner@archlinux.org>2013-01-04 13:06:12 -0500
commit244a3a52d3015bbed1cf82ae3ae7897965e167f9 (patch)
tree1445492ab84c0fbb4340a88a942bf51093429619 /bash-completion
parent5caaad20c419e4a3c3afa681354f0c7ea9509460 (diff)
downloadmirror-ponymix-244a3a52d3015bbed1cf82ae3ae7897965e167f9.tar.gz
mirror-ponymix-244a3a52d3015bbed1cf82ae3ae7897965e167f9.tar.bz2
mirror-ponymix-244a3a52d3015bbed1cf82ae3ae7897965e167f9.zip
add rudimentary bash completion
Diffstat (limited to 'bash-completion')
-rw-r--r--bash-completion92
1 files changed, 92 insertions, 0 deletions
diff --git a/bash-completion b/bash-completion
new file mode 100644
index 0000000..c6040fc
--- /dev/null
+++ b/bash-completion
@@ -0,0 +1,92 @@
+#!/bin/bash
+
+in_array() {
+ local i
+ for i in "${@:2}"; do
+ [[ $1 = "$i" ]] && return
+ done
+}
+
+_ponymix() {
+ local flags='-h --help -c --card -d --device -t --devtype
+ --source --input --sink --output
+ --sink-input --source-output'
+ local types='sink sink-input source source-output'
+ local verbs=(help defaults set-default list list-short
+ list-cards list-cards-short get-volume set-volume
+ get-balance set-balance adj-balance increase decrease
+ mute unmute toggle is-muted move kill
+ list-profiles list-profiles-short get-profile set-profile)
+ local i=0 cur prev verb word devtype dev idx devices
+
+ _get_comp_words_by_ref cur prev
+
+ for word in "${COMP_WORDS[@]}"; do
+ # find the verb
+ if in_array "$word" "${verbs[@]}"; then
+ verb=$word
+ break
+ fi
+
+ case $word in
+ --devtype)
+ # look ahead to next word
+ if [[ ${COMP_WORDS[i+1]} ]]; then
+ devtype=${COMP_WORDS[i+1]}
+ fi
+ ;;
+ --devtype=*)
+ devtype=${word#--devtype=}
+ ;;
+ --sink|--output)
+ devtype=sink
+ ;;
+ --source|--input)
+ devtype=source
+ ;;
+ --sink-input|--source-output)
+ devtype=${word#--}
+ ;;
+ esac
+ (( ++i ))
+ done
+
+ case $prev in
+ --card|-c)
+ mapfile -t devices < <(\ponymix list-cards-short 2>/dev/null)
+ COMPREPLY=($(compgen -W '${devices[*]}' -- "$cur"))
+ ;;
+ --device|-d)
+ while IFS=$'\t' read _ dev idx _; do
+ devices+=("$dev" "$idx")
+ done < <(\ponymix "--${devtype:-sink}" list-short 2>/dev/null)
+ COMPREPLY=($(compgen -W '${devices[*]}' -- "$cur"))
+ ;;
+ --devtype|-t)
+ COMPREPLY=($(compgen -W '$types' -- "$cur"))
+ ;;
+ esac
+ [[ $COMPREPLY ]] && return 0
+
+ case $cur in
+ -*)
+ COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
+ ;;
+ *)
+ [[ -z $verb ]] && COMPREPLY=($(compgen -W '${verbs[*]}' -- "$cur"))
+ ;;
+ esac
+ [[ $COMPREPLY ]] && return 0
+
+ case $word in
+ '')
+ COMPREPLY=($(compgen -W '${verbs[*]}' -- "$cur"))
+ ;;
+ esac
+
+ return 0
+}
+
+complete -F _ponymix ponymix
+
+# vim: set et ts=2 sw=2: