dotfiles/.i3blocks/dunst

23 lines
414 B
Plaintext
Raw Normal View History

2020-02-24 14:15:57 +01:00
#!/bin/bash
2020-02-24 14:26:41 +01:00
active=$(systemctl --user show -p ActiveState --value dunst.service)
2020-07-29 10:26:35 +02:00
echo -n "dunst "
if [[ "$active" == "active" ]]
2020-02-24 14:15:57 +01:00
then
if [[ -n "$button" ]]
2020-02-24 14:15:57 +01:00
then
dunstctl set-paused toggle
2020-02-24 14:15:57 +01:00
fi
if [[ "$(dunstctl is-paused)" == "true" ]]
2020-02-24 14:26:41 +01:00
then
echo "<span foreground=\"#FFCC66\">█</span>"
else
echo "<span foreground=\"#99CC99\">█</span>"
fi
2020-02-24 14:15:57 +01:00
else
2020-02-24 14:26:41 +01:00
echo "<span foreground=\"#F2777A\">█</span>"
2020-02-24 14:15:57 +01:00
fi