summaryrefslogtreecommitdiff
path: root/home-config/waybar/modules/check-for-music.sh
blob: 3b735a2df4124f09f0dce995e404a9655df49373 (plain)
1
2
3
4
5
6
7
#!/bin/sh

if [[ $(playerctl metadata --format '{{lc(status)}}' | grep playing) -eq 0 ]]; then
    exit 0
else
    exit 1
fi