+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:
@@ -20,6 +20,9 @@ hyper + l
|
||||
hyper + d
|
||||
$HOME/.local/scripts/background
|
||||
|
||||
hyper + m
|
||||
$HOME/.local/scripts/playlist_choice
|
||||
|
||||
# Music and volume
|
||||
F{6,7,8}
|
||||
mpc -q {prev,toggle,next}; \
|
||||
|
||||
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