G
Ryan's Git Repos
guix-dotfiles
files
log
graph
refs
Ref
broken-new-portal
main
new-bootloader-next
pres
home-config/waybar/modules/check-for-music.sh
new-bootloader-next
· 125 B · 7 lines
raw
1
#!/bin/sh
2
3
if
[[
$(
playerctl metadata --format
'{{lc(status)}}'
| grep playing
)
-eq
0
]];
then
4
exit
0
5
else
6
exit
1
7
fi