blob: 0477d46a1d83ee8e8ebae6b558211985b35de26b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/dash
format="<b>%title%</b>\t%artist%\t%album%\t%file%"
columns="$(mpc -f "$format" listall \
| column -t -s' ' \
-C title,width=10,trunc \
-C artist,width=10,trunc \
-C album,width=10,trunc \
-C file \
| sed 's/&/&/g'
)"
np=$(printf "%s" "$columns" | grep "$(mpc -f '%title%' current)" | head -1)
echo "$np"
selected=$(
printf "%s" "$columns" | rofi -dmenu -i \
-multi-select \
-markup-rows \
-p " " \
-ballot-selected-str " " \
-ballot-unselected-str " " \
-select "$np"
)
[ -z "$selected" ] && exit
echo "$selected" | while read -r option; do
file=$(printf "%s\n" "$option" | awk -F' ' '{print $NF}' | sed 's/^\s*//g')
echo ${file}
mpc insert "$file"
done
|