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