about summary refs log tree commit diff stats
path: root/pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh
blob: 178eb9244fb95cab6d03618f5f32c8ef8e43b357 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/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