11 lines
213 B
Plaintext
11 lines
213 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
choice=`find "$HOME"/Music/ -maxdepth 1 -type d | dmenu -i -l 25 -p "Pick an Album"`
|
||
|
|
||
|
echo Playing: $choice
|
||
|
|
||
|
if [ ! -z "$choice" ];then
|
||
|
ls -1 "$choice"/*.mp3 | xargs --delimiter='\n' mocp --playit
|
||
|
fi
|
||
|
|