12 lines
196 B
Bash
Executable File
12 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo ""
|
|
if mpc status | grep -q "playing"; then
|
|
mpc | sed "/^volume:/d;s/\\&/&/g;s/\\[playing\\].*//g"
|
|
elif mpc status | grep -q "paused"; then
|
|
echo ""
|
|
else
|
|
echo ""
|
|
fi
|
|
|