teamspeak-query-lib/control_src/ask_command.sh
Tobias Reisinger 6dddeb9c2e
All checks were successful
/ build-upload (push) Successful in 1m57s
Add split command
2025-07-27 12:30:17 +02:00

21 lines
277 B
Bash

actions=(
"quick"
"move"
"split"
"fetch-client"
"fetch-channel"
"migrate"
"away"
"not-away"
"back"
"message"
"message-client"
"events"
"events-ntfy"
)
action=$(echo "${actions[@]}" | tr ' ' '\n' | $DMENU)
if [ -n "$action" ]; then
$0 "$action"
fi