Add test for clementine running
This commit is contained in:
parent
b607b9a60a
commit
675c1a4869
1 changed files with 32 additions and 26 deletions
8
cctine
8
cctine
|
@ -1,5 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ -z $1 ]
|
||||
then
|
||||
echo "Help
|
||||
|
@ -15,6 +14,13 @@ You need parameter :
|
|||
exit
|
||||
fi
|
||||
|
||||
clementineProcess=$(qdbus | grep clementine | wc -l)
|
||||
|
||||
if [ $clementineProcess == 0 ]
|
||||
then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ $1 == 'title' ]
|
||||
then
|
||||
echo $(qdbus org.mpris.MediaPlayer2.clementine /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get org.mpris.MediaPlayer2.Player Metadata | grep -e "title:"| cut -d " " -f2-)
|
||||
|
|
Loading…
Reference in a new issue