You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
465 B
Plaintext

#!/bin/bash
## A simple script to get the currently playing album from Cmus, and pass it to covergrabber.py.
## Requires Cover Grabber: https://github.com/thedonvaughn/cover_grabber and of course Cmus music player.
## It is a good idea to alias this in your .bashrc. I aliased mine as 'cmus-grab'!
# Gets the directory containing our music.
FOLDER=$( cmus-remote -Q | grep 'file ' | cut -c6- | sed 's:/[^/]*$::' )
# Passes to covergrabber.
covergrabber "$FOLDER"