mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2025-12-11 10:48:00 -08:00
update
This commit is contained in:
10
projects/scripts/songinfo.sh
Executable file
10
projects/scripts/songinfo.sh
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
music_dir="/jellyfin/music"
|
||||
previewdir="$XDG_CONFIG_HOME/ncmpcpp/previews"
|
||||
filename="$(mpc --format "$music_dir"/%file% current)"
|
||||
previewname="$previewdir/$(mpc --format %album% current | base64).png"
|
||||
|
||||
[ -e "$previewname" ] || ffmpeg -y -i "$filename" -an -vf scale=128:128 "$previewname" > /dev/null 2>&1
|
||||
|
||||
notify-send -a "ncmpcpp" "Now Playing" "$(mpc --format '%title% \n%artist% - %album%' current)" -i "$previewname"
|
||||
Reference in New Issue
Block a user