Refactor ts-control with bashly

This commit is contained in:
Tobias Reisinger 2025-07-08 13:05:36 +02:00
parent 93ebbbd5d2
commit 7694bf365c
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
21 changed files with 217 additions and 175 deletions

View file

@ -0,0 +1,20 @@
actions=(
"quick"
"move"
"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