chore(nix): Clean up ncmpcpp module

This commit is contained in:
Donovan Glover 2024-04-03 05:51:01 -04:00
parent ea4c8d16dd
commit e82b8d40f9
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,54 +1,47 @@
{ pkgs, ... }: { pkgs, ... }:
let
inherit (pkgs) mpc-cli;
musicDirectory = "/home/user/";
changeScript = "ncmpcpp/on-song-change.sh";
fallbackImage = ../assets/wallpaper.png;
in
{ {
home.packages = with pkgs; [ mpc-cli ]; home.packages = [ mpc-cli ];
services.mpd = { services.mpd = {
enable = true; enable = true;
musicDirectory = "/home/user/"; inherit musicDirectory;
extraConfig = /* config */ '' extraConfig = /* config */ ''
auto_update "yes" auto_update "yes"
''; '';
}; };
xdg.configFile = { xdg.configFile.${changeScript} = {
"ncmpcpp/on-song-change.sh" = { executable = true;
executable = true; text = /* bash */ ''
text = /* bash */ '' #!/usr/bin/env bash
#!/usr/bin/env bash
music_dir="$HOME/" find_cover () {
fallback_image="${../assets/wallpaper.png}" ext="$(mpc --format %file% current | sed 's/^.*\.//')"
main () { if [ "$ext" == "flac" ]; then
find_cover 2>/dev/null metaflac --export-picture-to=/tmp/cover.jpg \
send 2>/dev/null "$(mpc --format "${musicDirectory}"/%file% current)" && cover_path="/tmp/cover.jpg" && return
} else
ffmpeg -y -i "$(mpc --format "${musicDirectory}"/%file% | head -n 1)"} \
/tmp/cover.jpg && cover_path="/tmp/cover.jpg" && return
fi
find_cover () { file="${musicDirectory}/$(mpc --format %file% current)"
ext="$(mpc --format %file% current | sed 's/^.*\.//')" album="''${file%/*}"
if [ "$ext" != "flac" ]; then cover_path=$(find "$album" -maxdepth 1 | grep -m 1 ".*\.\(jpg\|png\|gif\|bmp\)")
ffmpeg -y -i "$(mpc --format "$music_dir"/%file% | head -n 1)" \ }
/tmp/cover.jpg && cover_path="/tmp/cover.jpg" && return
else
# ffmpeg doesn't work for flacs
metaflac --export-picture-to=/tmp/cover.jpg \
"$(mpc --format "$music_dir"/%file% current)" && cover_path="/tmp/cover.jpg" && return
fi
#without embedded images this is used as a fallback
file="$music_dir/$(mpc --format %file% current)"
album="''${file%/*}"
#search for cover image
cover_path=$(find "$album" -maxdepth 1 | grep -m 1 ".*\.\(jpg\|png\|gif\|bmp\)")
}
send () { find_cover && notify-send -i "''${cover_path:-${fallbackImage}}" "Now Playing" "$(mpc current)"
notify-send -i "''${cover_path:-$fallback_image}" "Now Playing" "$(mpc current)" '';
}
main
'';
};
}; };
programs.ncmpcpp = { programs.ncmpcpp = {
@ -91,7 +84,7 @@
autocenter_mode = "yes"; autocenter_mode = "yes";
allow_for_physical_item_deletion = "no"; allow_for_physical_item_deletion = "no";
mouse_support = "no"; mouse_support = "no";
execute_on_song_change = "~/.config/ncmpcpp/on-song-change.sh"; execute_on_song_change = "~/.config/${changeScript}";
mpd_crossfade_time = 3; mpd_crossfade_time = 3;
}; };
}; };