View Single Post
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#5046
mobrol for you...

OK, I tried... But not found... It's take too much time to find this and if you or someone else can help with this, it will be nice...
1. file: /usr/share/themes/base/meegotouch/call-ui/style/call-ui.css
2. it can be in this lines, Which one exactly I don't know...
check blocks in lines: 1200, 1320, 1368 (maybe somewhere else)
3. Edit -> save file
4. Open terminal as ROOT and write:
Code:
ps aux | grep call-ui | grep invoker
you will see something like this:
Code:
15253 user     /usr/bin/invoker --type=m /usr/bin/call-ui -prestart
Now KILL this process with this command:
Code:
devel-su user -c "kill 15253"
Or instead this two commands, create this simple script:
Code:
#!/bin/sh

callUiProcess=`ps aux | grep call-ui | grep invoker`
callUiPid=${callUiProcess:1:4}
echo "kill $callUiPid"
devel-su user -c "kill $callUiPid"
 if [ $? -gt 0 ]; then
 echo "fail"
   else
      echo "success"
 fi
and run it as ROOT:
Code:
sh /path/to/file.sh
We need this instead rebooting phone after each changes that you will do to the call-ui.css file...
5. Check your changes by calling to your phone from one number -> answer to this -> call from another phone to your phone -> see changes in popup bubble.
6. If you will find this, post it here or send me PM

Last edited by Schturman; 2012-12-21 at 02:03.