dotfiles/.config/waybar/custom/spotify/monitor.sh
2025-12-18 12:09:34 -03:00

18 lines
342 B
Bash

#!/bin/bash
# we are a clock for the other
# spotify elements.
#
# waybar will run this on an interval
# and external processes can trigger this
# with pkill -RTMIN+4 waybar
sleep .1
pkill -RTMIN+5 waybar
# if spotify is running, trigger the
# render of the "quit" element.
if pgrep spotify > /dev/null
then
pkill -RTMIN+6 waybar
fi