11 lines
130 B
Text
11 lines
130 B
Text
|
#!/bin/sh
|
||
|
|
||
|
alias mpc-current='mpc -f "%title% - %album% - %artist%" current'
|
||
|
|
||
|
mpc-current
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
mpc-current --wait
|
||
|
done
|