summaryrefslogtreecommitdiffstats
path: root/bin/lastfm.sh
blob: 4c2c3faa52c4eee1eae0d3f24ab93a2b4c0f89c0 (plain)
1
2
3
4
5
6
7
8
if [ "$(pgrep mpdscribble)" ] 
then
  #killall mpdscribble && echo "last.fm scrobbling is disabled" | dzen2 -fn 'Envy Code R:pixelsize=13' -p 4 -y 1070 -ta c -sa c
  killall mpdscribble && echo "last.fm scrobbling is disabled" | notify-send "LastFM Scrobbling Disabled"
  else
  #mpdscribble && echo "last.fm scrobbling is enabled" | dzen2 -fn 'Envy Code R:pixelsize=13' -p 4 -y 1070 -ta c -sa c
  mpdscribble && echo "last.fm scrobbling is enabled" | notify-send "LastFM Scrobbling Enabled"
fi