summaryrefslogtreecommitdiff
path: root/bin/menuscripts/mplay
blob: 4c991fad5f3143ece8798d02e9abec320db2ca5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# menu select long
if [ "$MENUCMD" = "tofi" ]
then
	menucmd="tofi --width 50% --height 30%"
elif [ "$MENUCMD" = "dmenu" ]
then
	menucmd="dmenu -l 10 -g 1 -x -i" 
else
	menucmd="fzf"
fi
choice="$(mpc listall | $menucmd)"
test -z "$choice" &&
	exit 1
mpc insert "$choice" &&
	mpc next