mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
39 lines
951 B
Bash
39 lines
951 B
Bash
# gnome-mplayer(1) completion -*- shell-script -*-
|
|
|
|
_gnome_mplayer()
|
|
{
|
|
local cur prev words cword split
|
|
_init_completion -s || return
|
|
|
|
case $prev in
|
|
-'?' | --help | --help-all | --help-gtk)
|
|
return
|
|
;;
|
|
--showcontrols | --showsubtitles | --autostart)
|
|
COMPREPLY=($(compgen -w '0 1' -- "$cur"))
|
|
return
|
|
;;
|
|
--subtitle)
|
|
_filedir '@(srt|sub|txt|utf|rar|mpsub|smi|js|ssa|ass)'
|
|
return
|
|
;;
|
|
--tvdriver)
|
|
COMPREPLY=($(compgen -W 'v4l v4l2' -- "$cur"))
|
|
return
|
|
;;
|
|
esac
|
|
|
|
$split && return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1" --help-all)' -- "$cur"))
|
|
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
|
|
return
|
|
fi
|
|
|
|
_filedir
|
|
} &&
|
|
complete -F _gnome_mplayer gnome-mplayer
|
|
|
|
# ex: filetype=sh
|