+simple dmenu script to change music in mpd playlist
Searches playlist via dmenu for a music track then plays it. Bound to hyper + m in sxhkd
This commit is contained in:
10
Scripts/.local/scripts/playlist_choice
Executable file
10
Scripts/.local/scripts/playlist_choice
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
choice=$(mpc playlist | dmenu -i)
|
||||
if [[ -n "$choice" ]]
|
||||
then
|
||||
item=$(echo $choice | awk '{split($0, a, "-");print a[2]}' | cut -c2-)
|
||||
mpc searchplay title "$item"
|
||||
else
|
||||
echo "No choice given"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user