swaydots

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

sb-mpdup (265B)


      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:-i3blocks}")" || break
      8 done