about summary refs log tree commit diff stats
path: root/hm/soispha/pkgs/scripts/wrappers/lyrics
blob: 5b522ba9a8ebd0f601c2a631ff2d47f1d68faa5b (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.0.11" . %SHELL_LIBRARY_PATH

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

# vim: ft=sh