feat: use different .dtfiles config setup

This commit is contained in:
2023-10-11 15:52:30 +02:00
parent 6b431704de
commit b755d66571
175 changed files with 268 additions and 3596 deletions

27
.config/dunst/scripts/actions Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
reply_action () {
echo "Eyyy"
}
forward_action () {
echo "Sup"
}
handle_dismiss () {
echo "Dismiss"
}
ACTION=$(dunstify --action="default,Reply" --action="forwardAction,Forward" "Message Received")
case "$ACTION" in
"default")
reply_action
;;
"forwardAction")
forward_action
;;
"2")
handle_dismiss
;;
esac