Skip to content

Instantly share code, notes, and snippets.

@aodag
Created December 11, 2022 23:27
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/1feb132de154e09afdec9334a7c888f3 to your computer and use it in GitHub Desktop.
Save aodag/1feb132de154e09afdec9334a7c888f3 to your computer and use it in GitHub Desktop.
#!/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