mirror of
https://git.in.rschanz.org/ryan77627/guix-config.git
synced 2025-01-30 18:31:18 -05:00
8 lines
125 B
Bash
8 lines
125 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [[ $(playerctl metadata --format '{{lc(status)}}' | grep playing) -eq 0 ]]; then
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|