configuration/local/bin/abduco

21 lines
523 B
Bash
Executable File

#!/bin/bash
result="$(case "$1" in
list) find ~/.abduco -not -executable -type s -exec basename \{\} \; | cut -d@ -f1 | dmenu ;;
run|watch) dmenu_path | dmenu ;;
*) echo "other" ;;
esac)"
[ -z "$result" ] && exit 1
if test "$result" = "other"; then
exec /usr/bin/abduco "$@"
fi
case "$1" in
list) if abduco | grep -q "$result"; then exec st -e /usr/bin/abduco -a "$result"; fi ;;
watch) result="watch $result" ;&
run) exec st -e /usr/bin/abduco -A "$result" $result ;;
esac