View Single Post
Posts: 208 | Thanked: 220 times | Joined on Apr 2010
#18
@gft2k1
Boy! Color output based on result, that sure looks like a lot of code.Good luck with that

@ivnir
Every parameter of QBW can be modified through dbus call.Refer here.I think the following should work for you hoping what you have is a snippet

Code:
#!/bin/sh

LINHAS=`ps aux | grep scrobbler | grep -v grep | wc -l`;

 if [ $LINHAS -gt 0 ] ; then
echo "dsmetool -k /usr/bin/scrobbler" | sudo gainroot | echo "";
 kill -9 `ps aux | grep scrobbler | grep -v grep | awk '{ print $1; }'`;
echo "Scrobbler off"
run-standalone.sh dbus-send --session --type=method_call --dest=oh.no.more.qbw /oh/no/more/qbw<QBW_ID> oh.no.more.qbw.set_param_string string:"resImgFilename" string:scrobbler_off_img.png string:""
else
run-standalone.sh /usr/bin/scrobbler &
echo ""
echo "Scrobbler on"
run-standalone.sh dbus-send --session --type=method_call --dest=oh.no.more.qbw /oh/no/more/qbw<QBW_ID> oh.no.more.qbw.set_param_string string:"resImgFilename" string:scrobbler_on_img.png string:""
 fi
This will change the cmd result image based on output.You have to replace the <QBW_ID> part with the id of the snippet you have,something like "id1" etc.You may also need to tweak size,command image visibility etc.
__________________
With Linux-powered N900..ANYTHING is possible
 

The Following 2 Users Say Thank You to techie For This Useful Post: