View Single Post
Posts: 1 | Thanked: 1 time | Joined on Nov 2011
#734
Thank you for the great app and for the new TextCommand feature. But I have problem with it. I wrote simple script that shows me the current profile name and the vibration status with the TextCommand widget
Code:
#!/bin/sh

myprofilename=$(cat /home/user/.profiled/current)
myprofilevibr=$(dbus-send --type=method_call --print-reply --dest=com.nokia.profiled /com/nokia/profiled com.nokia.profiled.get_values string:"$myprofilename" | awk -F'"' 'NR==75 {print $2}')

if [ "$myprofilename" = 'general' ]; then
    myprofile=''
elif [ "$myprofilename" = 'silent' ]; then
    myprofile='Mute'
else
    myprofile=$myprofilename
fi

if [ "$myprofilevibr" = 'On' ]; then
    myprofile=$myprofile' {}'
fi

echo $myprofile
It works, it shows me the correct info. But often something happens and the process with the script goes in interruptible state (status D in ps) and the lockscreen won't update the info after profile change until qtlockscreen reload, and the dead process can be removed only with device restart.
I suppose that sometimes the execution of the script can't finish before some processes in qtlockscreen and the script freezes.
I tried to make the script lighter, so I removed the part with the vibration check (may be dbus-send is slow) but sometimes it freezes again. Script that only prints the text from little file is enough light, so it is a problem. Usually it takes me from 1 to 10 profile changes before freeze. Sometimes more but rarely.
Please, look at that, because TextCommand is very useful feature if it works correct. Thank you!

P.S.: I forgot to say that I'm using ProfilesX Extended Profiles Manager to manage profiles so I have more than two profiles. But I don't think it has some connection with that because the problem occurs with changing between General and Silent only too.

Last edited by neter; 2011-11-07 at 22:57.
 

The Following User Says Thank You to neter For This Useful Post: