Configuration files for my GNU/Linux installation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
dotfiles/eww/.config/eww/scripts/musicstatus

12 lines
142 B

#!/usr/bin/bash
status=$(playerctl status &>/dev/stdout)
if [[ "$status" == "No players found" ]]
then
echo "false"
else
echo "true"
fi