Created
December 26, 2021 07:19
-
-
Save aodag/c5a20163a69f72ed33877552c200f1b6 to your computer and use it in GitHub Desktop.
select playlist and play mpd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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