12 lines
168 B
Bash
Executable file
12 lines
168 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ ! -x "$(command -v mpc)" ] && exit
|
|
|
|
alias mpc-current='mpc -f "%title% - %album% - %artist%" current'
|
|
|
|
mpc-current
|
|
|
|
while :
|
|
do
|
|
mpc-current --wait
|
|
done
|