about summary refs log tree commit diff stats
path: root/pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh
blob: 004c67c7954cb9894b037bcfa27dbd8332922c44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH

(
    cd "%MPD_MUSIC_DIR" || die "No music dir!"
    exiftool "$(mpc --format '%file%' current)" -json | jq '.[0].Lyrics' -r | less
)

# vim: ft=sh