• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root ICS theme UPDATED: 7/9/2012 in blue and purple Power widget ics theme add/edited

Can someone do the dialer app like this picture shown below.

and can someone fix this dim area where I cant see the SSID im connected and can you guys make the check marks similar
 

Attachments

  • phone.png
    phone.png
    4.3 KB · Views: 204
Step 3a doesn't work for me because /system is mounted read-only. I remounting it read-write allows messing with these files without needing to mess around with any file explorer.

Code:
# mv /system/sounds/poweron/PowerOn.mp3 /system/sounds/poweron/PowerOn.mp3.bak
failed on '/system/sounds/poweron/PowerOn.mp3' - Read-only file system
# mount | grep "/system"
/dev/block/mmcblk0p12 /system ext4 ro,relatime,barrier=1,data=ordered 0 0
# mount -o rw,remount /dev/block/mmcblk0p12 /system
# mount | grep "/system"
/dev/block/mmcblk0p12 /system ext4 rw,relatime,barrier=1,data=ordered 0 0
# mv /system/sounds/poweron/PowerOn.mp3 /system/sounds/poweron/PowerOn.mp3.bak
 
was curious about something so i thought id look for some feedback from here where you guys are using uot and modding of files also. ive ran into a random freeze issue when copying framework-res to system/framework. doesnt happen all the time only at random. and causes the phone to get stuck in lg logo bootloop. using root explorer to copy from internal sd to system directory causes this. i think its due to the reboot occuring while the file is still copying over or just a plain failure of the app to copy it properly. so my question is whether or not using adb versus an app to make the copy over would eliminate the failed copy over and resulting freeze/bootloop? ive pretty much stopped overwriting the files due to this issue as i dont want to end up with another bootloop issue.
 
was curious about something so i thought id look for some feedback from here where you guys are using uot and modding of files also. ive ran into a random freeze issue when copying framework-res to system/framework. doesnt happen all the time only at random. and causes the phone to get stuck in lg logo bootloop. using root explorer to copy from internal sd to system directory causes this. i think its due to the reboot occuring while the file is still copying over or just a plain failure of the app to copy it properly. so my question is whether or not using adb versus an app to make the copy over would eliminate the failed copy over and resulting freeze/bootloop? ive pretty much stopped overwriting the files due to this issue as i dont want to end up with another bootloop issue.

yes you are 100 % correct and will eliminate this.the problem is you have to mess with permissions whichi personally am really bad at
 
thanks,im using adb primarily but i get a permission denied error when trying to push over framework-res to system/framework...oddly enough i dont get the error when pushing systemui to system/apps. ive tried to reload adb with root to push the remaining file but get a cant use root in build versions message. ive reverted to simply root explorer usage to copy the framework-res. so far no copy freeze up. but it gives me the jitters each time i do it lol
 
Back
Top Bottom