Created
December 11, 2022 23:27
-
-
Save aodag/1feb132de154e09afdec9334a7c888f3 to your computer and use it in GitHub Desktop.
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/bash | |
MPC=/usr/bin/mpc | |
CMD=/usr/bin/fzf | |
artist=$($MPC ls -f %artist% | sort | uniq | $CMD) | |
album=$($MPC search -f %album% artist "$artist" | sort | uniq | $CMD) | |
$MPC search -f %file% artist "$artist" album "$album" | $MPC add | |
$MPC play |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment