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