Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cirrusUK/1be8e8fbb735a0ee6aa9 to your computer and use it in GitHub Desktop.
Save cirrusUK/1be8e8fbb735a0ee6aa9 to your computer and use it in GitHub Desktop.
MPD Now Playing using xcowsay
while true; do
OSD=$(mpc current)
xcowsay --image=/path/to/image.png "MPD Now Playing" "$OSD"
mpc idle player > /dev/null
done
#!/bin/bash
OSD=$(mpc current)
xcowsay --at 800,20 --font=CaviarDreams --monitor=1 --image=/path/to/image.png "MPD Now Playing" "$OSD"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment