11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/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
|
|
|