8 lines
102 B
Bash
Executable File
8 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if mpc status | grep -q "\[playing\]"; then
|
|
mpc status | head -1
|
|
else
|
|
echo -n "mpd"
|
|
fi
|