dotfiles/.config/eww/scripts/toggle-nf-state.sh

13 lines
213 B
Bash
Raw Normal View History

2024-10-22 11:17:09 +02:00
#!/bin/bash
makoctl mode -t dnd
if ! makoctl mode | grep -q dnd; then
2024-10-22 11:17:09 +02:00
if [[ "$LANG" =~ ^fr ]]; then
text="Notifications activées."
else
text="Notifications enabled."
fi
notify-send "$text"
fi