mirror of
https://git.davidovski.xyz/dot.git
synced 2026-07-14 06:10:49 +00:00
4 lines
99 B
Bash
Executable file
4 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
chosen=$(mpc listall | dmenu -i -p mpd)
|
|
[ "$chosen" != "" ] || exit
|
|
mpc insert "$chosen"
|