Skip to content

Instantly share code, notes, and snippets.

@jn64
jn64 / ncmpcpp_notify.sh
Created May 19, 2020 12:40
ncmpcpp notifications with album art
#!/bin/bash
# Send notification with album art when ncmpcpp plays a new song
# execute_on_song_change must be set in ncmpcpp config
readonly MUSIC_DIR="${HOME}/Music/Library"
readonly SONG_PATH="$(mpc --format '%file%' current)"
readonly SONG_DIR="$(dirname "${SONG_PATH}")"
readonly ALBUM_ART_PATH="${MUSIC_DIR}/${SONG_DIR}/cover.jpg"