SpottyMute/nowplaying
kittenlikeasmallcat 5eb88964df
Update nowplaying
Now only displays info for the running music player. Works on Artix MATE with qt5-tools installed. Added a few more Spotify filters.
2022-02-18 15:39:38 -08:00

42 lines
1.6 KiB
Plaintext

GNU nano 6.1 /home/ktn/.local/bin/nowplaying
#!/bin/bash
SONG=$( cat ~/.nowplaying2.tmp )
#while :; do
if ! $(pgrep -x "spotify" >/dev/null) ; then
if ! $(pgrep -x "cmus" >/dev/null) && $(pgrep -x "clementine" >/dev/null); then
echo -n $(np -n 2>/dev/null)
echo -n "spotify is off as fuck" > ~/.nowplaying2.tmp
#echo "error1";
elif ! $(pgrep -x "clementine" >/dev/null) && $(pgrep -x "cmus" >/dev/null); then
tail -z ~/.cmus/now-playing
echo -n "spotify is off as fuck" > ~/.nowplaying2.tmp
else
tail -z ~/.cmus/now-playing & echo -n $(np -n 2>/dev/null);
echo -n "spotify is off as fuck" > ~/.nowplaying2.tmp
fi
elif $(pidof -x "spotify">/dev/null ) ; then
# echo -n $( spotifycli --status ) > ~/.nowplaying2.tmp ;
echo $( spotifycli --status ) > ~/.nowplaying2.tmp ;
case $SONG in
"-" | "- Shop DGDG.com" | "- Advertisement" | "Advertisement" )
tail -z ~/.cmus/now-playing & echo -n $(np -n 2>/dev/null);
echo 'AD MUTED·' ; #&& echo 'AD MUTED·' > ~/.nowplaying2.tmp
#echo "error2";
;;
"spotify is off as fuck" )
tail -z ~/.cmus/now-playing & echo -n $(np -n 2>/dev/null);
echo "error3";
;;
* )
tail -z ~/.cmus/now-playing & echo -n $(np -n 2>/dev/null);
echo $(spotifycli --status)
#echo "error4";
;;
esac;
echo -n $( spotifycli --status ) > ~/.nowplaying2.tmp ;
fi
#sleep 2; done