Action list.

SVN revision: 17052
This commit is contained in:
sebastid 2005-09-28 22:47:17 +00:00 committed by sebastid
parent 04ca57554b
commit 26c81386ee
1 changed files with 11 additions and 5 deletions

View File

@ -10,10 +10,6 @@
# -binding-wheel-add, -binding-wheel-del
# -desktop-bg-add, -desktop-bg-del
# -desktop-name-add, -desktop-name-del
# -exec-action
#
# Add in enlightenment_remote
# -action-list
_enlightenment_remote() {
local cur prev opts
@ -78,7 +74,8 @@ _enlightenment_remote() {
elif [[ ${COMP_CWORD} -eq 5 ]]; then
COMPREPLY=($(compgen -W "0 1" -- "${cur}"))
elif [[ ${COMP_CWORD} -eq 6 ]]; then
COMPREPLY=()
actions=$(enlightenment_remote -action-list|grep REPLY:|awk '{print $2}')
COMPREPLY=($(compgen -W "${actions}" -- "${cur}"))
elif [[ ${COMP_CWORD} -eq 7 ]]; then
COMPREPLY=()
fi
@ -158,6 +155,15 @@ _enlightenment_remote() {
COMPREPLY=($(compgen -W "${displays}" -- "${cur}"))
return 0
;;
-exec-action)
if [[ ${COMP_CWORD} -eq 2 ]]; then
actions=$(enlightenment_remote -action-list|grep REPLY:|awk '{print $2}')
COMPREPLY=($(compgen -W "${actions}" -- "${cur}"))
elif [[ ${COMP_CWORD} -eq 3 ]]; then
COMPREPLY=()
fi
return 0
;;
-focus-policy-set)
COMPREPLY=($(compgen -W "CLICK MOUSE SLOPPY" -- "${cur}"))
return 0