Skip to content

Instantly share code, notes, and snippets.

@Jipok
Last active December 18, 2018 18:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jipok/5b256915fb5fad981c05a40796f6e3e1 to your computer and use it in GitHub Desktop.
Save Jipok/5b256915fb5fad981c05a40796f6e3e1 to your computer and use it in GitHub Desktop.
Select mpd track via dmenu
#!/bin/sh
mpc -f "[[%artist% - ][%album% - ]%title%]|[%file%]" playlist | \
cat -n | sed "s/\t/: /" | \
cut -c 1-120 | dmenu -i | cut -d ':' -f 1 \
| xargs -r mpc play > /dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment