Mise à jour de '.i3blocks/dunst'

This commit is contained in:
Breizh 2020-02-24 14:26:41 +01:00
parent 86fe4882e9
commit c8f20c6f44

18
.i3blocks/dunst Executable file → Normal file
View file

@ -3,25 +3,31 @@
runtime="${XDG_RUNTIME_DIR}/i3blocks" runtime="${XDG_RUNTIME_DIR}/i3blocks"
[[ ! -d "$runtime" ]] && mkdir -p "$runtime" [[ ! -d "$runtime" ]] && mkdir -p "$runtime"
active=$(systemctl --user show -p ActiveState --value dunst.service)
if [[ -n "$button" ]] if [[ -n "$button" ]]
then then
pid=$(systemctl --user show -p MainPID --value dunst.service) pid=$(systemctl --user show -p MainPID --value dunst.service)
if [[ -f "$runtime/dunst" ]] if [[ -f "$runtime/dunst" ]]
then then
killall -SIGUSR2 $pid kill -SIGUSR2 $pid
rm "$runtime/dunst" rm "$runtime/dunst"
else else
killall -SIGUSR1 $pid kill -SIGUSR1 $pid
touch "$runtime/dunst" touch "$runtime/dunst"
fi fi
fi fi
echo -n "dunst " echo -n "dunst "
if [[ -f "$runtime/dunst" ]] if [[ "$active" == "active" ]]
then then
echo "<span foreground=\"#FFCC66\">█</span>" if [[ -f "$runtime/dunst" ]]
then
echo "<span foreground=\"#FFCC66\">█</span>"
else
echo "<span foreground=\"#99CC99\">█</span>"
fi
else else
echo "<span foreground=\"#99CC99\">█</span>" echo "<span foreground=\"#F2777A\">█</span>"
fi fi