Skip to content

Instantly share code, notes, and snippets.

@cirrusUK
Last active December 13, 2018 01:01
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/313258988332f35d854bfda6094bbf1b to your computer and use it in GitHub Desktop.
Save cirrusUK/313258988332f35d854bfda6094bbf1b to your computer and use it in GitHub Desktop.
MPV now playing shell script [requires ponymix
#!/bin/bash
export DISPLAY=":0.0"
MPVNP=$(ponymix list | awk 'NR==16' | cut -c14- |sed 's/.\{6\}$//' )
notify-send -h string:bgcolor:#191919 -h string:fgcolor:#f2810d -i ~/.icons/mpv.png "📺 MPV Now Playing " "$MPVNP"
#!/bin/bash
export DISPLAY=":0.0"
MPVNP=$(ponymix list | awk 'NR==16' | cut -c14- |sed 's/.\{6\}$//' )
echo "📺 MPV Now Playing" " $MPVNP"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment