inital commit
This commit is contained in:
10
.local/bin/statusbar/music
Executable file
10
.local/bin/statusbar/music
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
if [ $( mpc status | grep '\[paused\]' | wc -l ) -eq 1 ]; then
|
||||
echo ""
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ $( mpc status | grep '\[playing\]' | wc -l ) -eq 1 ]; then
|
||||
echo $(mpc status | sed "/^volume:/d" | tac | sed -e "s/\\[paused\\].*//g;s/\\[playing\\].*//g" | tr -d '\n' | sed -e "s/$/ /g")
|
||||
exit
|
||||
fi
|
Reference in New Issue
Block a user