Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
cirrusUK / mpdosd.sh
Created September 22, 2013 19:18
simple bash script using notify-send and calls mpc to display current track playing in mpc/mpd/
#!/bin/bash
OSD=$(mpc current)
notify-send -i ~/.icons/top.png "$OSD"