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