33 lines
650 B
Bash
Executable file
33 lines
650 B
Bash
Executable file
#!/bin/bash
|
|
|
|
runtime="${XDG_RUNTIME_DIR}/i3blocks"
|
|
[[ ! -d "$runtime" ]] && mkdir -p "$runtime"
|
|
|
|
active=$(systemctl --user show -p ActiveState --value dunst.service)
|
|
|
|
if [[ -n "$button" ]]
|
|
then
|
|
pid=$(systemctl --user show -p MainPID --value dunst.service)
|
|
if [[ -f "$runtime/dunst" ]]
|
|
then
|
|
kill -SIGUSR2 $pid
|
|
rm "$runtime/dunst"
|
|
else
|
|
kill -SIGUSR1 $pid
|
|
touch "$runtime/dunst"
|
|
fi
|
|
fi
|
|
|
|
echo -n "dunst "
|
|
|
|
if [[ "$active" == "active" ]]
|
|
then
|
|
if [[ -f "$runtime/dunst" ]]
|
|
then
|
|
echo "<span foreground=\"#FFCC66\">█</span>"
|
|
else
|
|
echo "<span foreground=\"#99CC99\">█</span>"
|
|
fi
|
|
else
|
|
echo "<span foreground=\"#F2777A\">█</span>"
|
|
fi
|