+ Replacing cmus with ncmpcpp (mpd)

This commit is contained in:
ziro 2020-06-16 08:17:33 +07:00
parent c1d195baf8
commit 44e654c1e3
15 changed files with 1119 additions and 4 deletions

View file

@ -1,5 +1,6 @@
#!/bin/dash
choices="Cancel\0icon\x1fzcancel
ncmpcpp
cmus\0icon\x1fzcmus
Spotify\0icon\x1fzspotify
VLC\0icon\x1fzvlc"
@ -13,6 +14,7 @@ case "$chosen" in
cmus) notify-send "Launching..." "cmus" && st -n cmus -e cmus ;;
Spotify) notify-send "Launching..." "Spotify" && env LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify ;;
VLC) notify-send "Launching..." "VLC" && vlc ;;
ncmpcpp) notify-send "Launching..." "$chosen" && st -n ncmpcpp -e ncmpcpp ;;
esac