Skip to content

Instantly share code, notes, and snippets.

@aodag
Created December 26, 2021 07:19
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 aodag/c5a20163a69f72ed33877552c200f1b6 to your computer and use it in GitHub Desktop.
Save aodag/c5a20163a69f72ed33877552c200f1b6 to your computer and use it in GitHub Desktop.
select playlist and play mpd
#!/bin/sh
playlist=$(mpc lsplaylist | wofi -d)
if [ -n "$playlist" ] ; then
mpc clear
mpc load "$playlist"
mpc play
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment