diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-04 21:42:45 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-04 21:42:45 +0200 |
commit | 5e6bd8a3d778066ead44f6c60a704d3f2c356d22 (patch) | |
tree | f2dd5d816835d89f73480f63e983d28ec7a9eade | |
parent | pkgs/git-edit-index: Avoid undefined variable error (diff) | |
download | nixos-config-5e6bd8a3d778066ead44f6c60a704d3f2c356d22.zip |
pkgs/mpp-lyrics: Use correct beets music directory
Diffstat (limited to '')
-rwxr-xr-x | pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh b/pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh index e1e929b5..fa1cac49 100755 --- a/pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh +++ b/pkgs/by-name/mp/mpp-lyrics/mpp-lyrics.sh @@ -15,7 +15,7 @@ die() { exit 1 } -cd "$XDG_MUSIC_DIR" || die "No music dir!" +cd "$XDG_MUSIC_DIR/beets" || die "No music dir!" exiftool "$(mpc --format '%file%' current)" -json | jq '.[0].Lyrics' --raw-output | less # vim: ft=sh |