#!/usr/bin/env dash die() { echo "Error: $1" exit 1 } cd "$XDG_MUSIC_DIR" || die "No music dir!" exiftool "$(mpc --format '%file%' current)" -json | jq '.[0].Lyrics' --raw-output | less # vim: ft=sh