hyprdots

my dotfiles
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

sb-mpdup (262B)


      1 #!/bin/sh
      2 
      3 # This loop will update the mpd statusbar module whenever a command changes the
      4 # music player's status. mpd must be running on X's start for this to work.
      5 
      6 while : ; do
      7 	mpc idle >/dev/null && kill -45 "$(pidof "${STATUSBAR:-waybar}")" || break
      8 done