Skip to content

Instantly share code, notes, and snippets.

@thefish
Last active January 15, 2019 15:16
Show Gist options
  • Save thefish/5b5a18f17bb0aab344f7c304873209bc to your computer and use it in GitHub Desktop.
Save thefish/5b5a18f17bb0aab344f7c304873209bc to your computer and use it in GitHub Desktop.
mocp on ubuntu display song by std notify script
#! /bin/bash
set -e
moc-gather-info ()
{
local key val
while read -r key val ; do
eval "Moc${key%:}='${val//\'}'"
done < <( mocp --info )
}
moc-gather-info
case ${MocState} in
PAUSE) stat=⏸;;
PLAY ) stat=⏵;;
* ) exit 0 ;;
esac
exec notify-send -t 4500 "${stat}${MocSongTitle}" "<i>${MocAlbum}</i>
${MocArtist}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment