[MOD][StunnerB4/4.2/4.3/5/.19/.26|AOSPv6/7/8|CM9v2/3] Recent Apps Mod [28/4]

Search This thread

mfractal

Senior Member
Aug 1, 2009
1,717
534
Londrina
There is such an option (check out the screen shot I posted) but I don't like the way it looks. Yours was cooler :)

Sent from my CM9 powered Galaxy Note
 

matius44

Senior Member
Feb 24, 2011
1,830
1,073
Sunderland
There is such an option (check out the screen shot I posted) but I don't like the way it looks. Yours was cooler :)

Sent from my CM9 powered Galaxy Note

Actually it was Nick's work in the first place :) only problem with it is that battery mod is in SystmUI.apk, so is also Recent Apps mod, so it's either one of them or both of them together! What do you think?
 
Last edited:

nickshertzer

Senior Member
Dec 13, 2006
1,146
616
www.nickshertzer.com
I think that there may be a way to "inject" the needed changes into CM9 without replacing the entire SystemUI.apk

Check out this thread:
[Framework MOD][Update 2.27.12]All ICS ROMS

Checking updater-script shows all the interesting stuff is happening in "installtheme.sh"

Code:
show_progress(0.500000, 0);
ui_print("");
ui_print("True Blue ICS Theme");
ui_print("");
ui_print("Deleting Dalvik and Cache");
mount("ext4", "EMMC", "/dev/block/platform/s3c-sdhci.0/by-name/userdata", "/data");
delete_recursive("/data/dalvik-cache/");
delete_recursive("/cache/dalvik-cache/");
unmount("/data");
ui_print("");
ui_print("Intalling Theme");
run_program("/sbin/busybox", "mount", "/system");
package_extract_dir("system", "/system");
package_extract_dir("vrtheme", "/sdcard/vrtheme");
set_perm(0, 0, 0755, "/sdcard/vrtheme/installtheme.sh");
set_perm(0, 0, 0755, "/sdcard/vrtheme/zip");
set_perm(0, 0, 0755, "/sdcard/vrtheme/cleanup.sh");
set_perm(0, 0, 0755, "/sdcard/vrtheme/zipalign");
run_program("/sdcard/vrtheme/installtheme.sh");
run_program("/sdcard/vrtheme/cleanup.sh");
run_program("/sbin/busybox", "umount", "/system");
run_program("/sbin/busybox", "umount", "/sdcard");
ui_print("");
ui_print("Done! Reboot");

Here is the installtheme.sh
Code:
#!/sbin/sh
# Copyright VillainROM 2011. All Rights Reserved
# cleanup from last time
[ -d /sdcard/vrtheme-backup ] && rm -r /sdcard/vrtheme-backup

# we need to first go through each file in the "app" folder, and for each one present, apply the modified theme to the APK
# let us copy each original APK here first. 
echo "Processing /system/app/"
busybox mkdir -p /sdcard/vrtheme-backup/system/app
busybox mkdir -p /sdcard/vrtheme/apply/system/app
cd /sdcard/vrtheme/system/app/
for f in $(ls)
do
  echo "Processing $f"
  cp /system/app/$f /sdcard/vrtheme/apply/system/app/
  cp /system/app/$f /sdcard/vrtheme-backup/system/app/
done
echo "Backups done for system apps"

# repeat for /system/framework now


[ -d /sdcard/vrtheme/system/framework ] && framework=1 || framework=0

if [ "$framework" -eq "1" ]; then
echo "Processing /system/framework"
busybox mkdir -p /sdcard/vrtheme-backup/system/framework
busybox mkdir -p /sdcard/vrtheme/apply/system/framework
cd /sdcard/vrtheme/system/framework
for f in $(ls)
do
  echo "Processing $f"
  cp /system/framework/$f /sdcard/vrtheme/apply/system/framework/
  cp /system/framework/$f /sdcard/vrtheme-backup/system/framework/
done
echo "Backups done for frameworks"
fi

# repeat for /data/app now


[ -d /sdcard/vrtheme/data ] && dataapps=1 || dataapps=0

if [ "$dataapps" -eq "1" ]; then
echo "Processing /data/app/"
busybox mkdir -p /sdcard/vrtheme-backup/data/app
busybox mkdir -p /sdcard/vrtheme/apply/data/app
cd /sdcard/vrtheme/data/app/
for f in $(ls)
do
  echo "Processing $f"
  cp /data/app/$f /sdcard/vrtheme/apply/data/app/
  cp /data/app/$f /sdcard/vrtheme-backup/data/app/
done
echo "Backups done for data apps"
fi

# for each of the system apps needing processed 
cd /sdcard/vrtheme/apply/system/app/
for f in $(ls)
do
  echo "Working on $f"
  cd /sdcard/vrtheme/system/app/$f/
  /sdcard/vrtheme/zip -r /sdcard/vrtheme/apply/system/app/$f *
done
echo "Patched system files"

if [ "$dataapps" -eq "1" ]; then
cd /sdcard/vrtheme/apply/data/app/
for f in $(ls)
do
  echo "Working on $f"
  cd /sdcard/vrtheme/data/app/$f/
  /sdcard/vrtheme/zip -r /sdcard/vrtheme/apply/data/app/$f *

done
echo "Patched data files"
fi

if [ "$framework" -eq "1" ]; then
cd /sdcard/vrtheme/apply/system/framework
for f in $(ls)
do
  echo "Working on $f"
  cd /sdcard/vrtheme/system/framework/$f/
  /sdcard/vrtheme/zip -r /sdcard/vrtheme/apply/system/framework/$f *
done
echo "Patched framework files"
fi

# and now time to zipalign
cd /sdcard/vrtheme/apply/system/app/
busybox mkdir aligned
for f in $(ls)
do
  echo "Zipaligning $f"
  /sdcard/vrtheme/zipalign -f 4 $f ./aligned/$f
done

if [ "$dataapps" -eq "1" ]; then
cd /sdcard/vrtheme/apply/data/app/
busybox mkdir aligned
for f in $(ls)
do
  echo "Zipaligning $f"
  /sdcard/vrtheme/zipalign -f 4 $f ./aligned/$f
done
fi

if [ "$framework" -eq "1" ]; then
cd /sdcard/vrtheme/apply/system/framework/
busybox mkdir aligned
for f in $(ls)
do
  echo "Zipaligning $f"
  /sdcard/vrtheme/zipalign -f 4 $f ./aligned/$f
done
fi

# time to now move each new app back to its original location
cd /sdcard/vrtheme/apply/system/app/aligned/
cp * /system/app/
chmod 644 /system/app/*
if [ "$dataapps" -eq "1" ]; then
cd /sdcard/vrtheme/apply/data/app/aligned/
cp * /data/app/
chmod 644 /data/app/*
fi
if [ "$framework" -eq "1" ]; then
cd /sdcard/vrtheme/apply/system/framework/aligned/
cp * /system/framework/
chmod 644 /system/framework/*
fi

# Do not remove the credits from this, it's called being a douche
echo "VillainTheme is done"
# we are all done now

Maybe someone needs to contact VillainTheme/Brainmaster or demo23019 and figure out how we can leverage this awesome power. demo23019 uses it to change out 115 PNGs from the framework-res.apk on the fly, but from the looks of the script, it should be able to do a lot more...
 
Last edited:
  • Like
Reactions: matius44

romualdp

Senior Member
Dec 5, 2005
57
2
.avi movies?

Hi, everybody, is there a way to watch .avi movies on stunner? I tried MX and Mobo video players - they both crash :(
Thanks,
 

matius44

Senior Member
Feb 24, 2011
1,830
1,073
Sunderland
Have FC on my Gnote. Says "Interface has unfortunately stopped".

Anyone know what could be wrong?

I never faced such force close, what exactly are you opening and it force closes? Or is it a random FC??

Hi, everybody, is there a way to watch .avi movies on stunner? I tried MX and Mobo video players - they both crash :(
Thanks,

I can run avi movies fine with Mobo player..try clearing the app data in Settings > App..

And for your problem to be heard widely I suggest posting in Stunner's thread ;)
 

DJsCrIBbLe

Senior Member
Feb 22, 2012
1,567
178
Just wanna report back. After getting WPBLACK to work pretty much daily when viewing recent apps for an extended time. System.UI force closes. No biggie really opening recent apps and it works fine.

Not complaining just sharing.

Running cm9v2

Sent from my GT-N7000 using Tapatalk 2
 

matius44

Senior Member
Feb 24, 2011
1,830
1,073
Sunderland
Just wanna report back. After getting WPBLACK to work pretty much daily when viewing recent apps for an extended time. System.UI force closes. No biggie really opening recent apps and it works fine.

Not complaining just sharing.

Running cm9v2

Sent from my GT-N7000 using Tapatalk 2

Hmm weird issue as I never faced System.UI force close and don't see what would cause that..let's see if there are other members have the same issue or it's isolated bug..

Do you have other mods installed?

Btw, all reports are welcomed to make the mods better ;)
 

Top Liked Posts

  • There are no posts matching your filters.
  • 36
    Another day, another MOD :D

    I found these beautiful mods in the Android Themes section [look here and here ] and thought it would be nice to have them :p



    83Nym.png
    bOnCn.png




    At that time I was running AOSP v06 by imilka and then changed to the amazing ICS Stunner Beta 4 by neobuddy89 so I made it for those two ROMs..

    Note: these mods are for phone mode only, it will NOT work in tablet mode, sorry..

    Make Backup First! you're flashing this at you're own risk :p




    For ICS Stunner Beta 4​



    - Windows Phone 7 style app switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    If you flashed it and did not like it, here is a restore zip: Download HERE




    For ICS Stunner Beta 4.2/ Beta 4.3​



    - Windows Phone 7 style app switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    NEW: Now Windows Phone 7 MOD in black transparent background instead of bright blue! To know how the color is before flashing just drop down the notification menu, I used the same color hex for the app switcher mod :D

    If you flashed it and did not like it, here is a restore zip: Download HERE


    HERE




    For ICS Stunner Beta 5​



    - Windows Phone 7 style app (Blue) switcher: Download HERE


    - Windows Phone 7 style app (Black) switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    If you flashed it and did not like it, here is a restore zip: Download HERE




    For ICS Stunner 1.4.19​



    - Windows Phone 7 style app (Blue) switcher: Download HERE


    - Windows Phone 7 style app (Black) switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    If you flashed it and did not like it, here is a restore zip: Download HERE




    For ICS Stunner 1.4.26​



    - Windows Phone 7 style app (Blue) switcher: Download HERE



    - Windows Phone 7 style app (Black) switcher: Download HERE



    - Chrome Browser style app switcher: Download HERE



    If you flashed it and did not like it, here is a restore zip: Download HERE




    ========================================================================================================================================================================================================​




    For AOSP v06​



    - Windows Phone 7 style app switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    Also if you flashed and did not like it, here is a restore zip: Download HERE




    For AOSP v07​



    Note: for these updated ones I also included the clean battery mod made by oedex, see his post here for it and more mods by him (thanks mate ;))


    - Windows Phone 7 style app switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    And here is the updated restore zip: Download HERE




    For AOSP v08​



    Note: This time I used the stock files from imilka's ROM directly, if you have any mods this may overwrite them..


    - Chrome Browser style app switcher: Download HERE


    - Windows Phone 7 style app switcher: Download HERE


    NEW! Now Windows Phone 7 MOD in black transparent background instead of bright blue! To know how the color is before flashing just drop down the notification menu, I used the same color hex for the app switcher mod :D

    Download HERE


    And here is the updated restore zip: Download HERE



    Thanks Skimi for providing the necessary files :)




    ========================================================================================================================================================================================================​




    For CM9 v02​



    - Windows Phone 7 style app (Blue) switcher: Download HERE


    - Windows Phone 7 style app (Black) switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    If you flashed it and did not like it, here is a restore zip: Download HERE




    For CM9 v03​



    - Windows Phone 7 style app (Blue) switcher: Download HERE


    - Windows Phone 7 style app (Black) switcher: Download HERE


    - Chrome Browser style app switcher: Download HERE


    If you flashed it and did not like it, here is a restore zip: Download HERE





    Let me know what do you think guys :cool:

    Happy flashings :D
    4
    Already 50 downloads and not a single report besides Lord and mfractal :/

    Do you believe my mediafire account says it served more than 2,500 downloads? And that's not taking into account my box account that also served around 1,000..how many of those thanked me?

    What a pity..

    Well, at least there are a few good friends around here who make this modding process enjoyable ;)
    3
    I was hoping somebody could make this mod. Nice.
    3
    First Post updated with Stunner 1.4.19 mods :D

    Flash and report :cool:
    3
    There's just a lot of ungrateful people on xda, it really annoys me :mad:

    I've thanked a whole heap of your posts in here though bro, as have a few others. Hopefully that'll let you know that your work is VERY MUCH appreciated! :D

    Just about to flash the latest update for the black WP7 mod for ICS Stunner, will let you know how it goes after my backup is finished :)

    Thank you for keeping these updated mate!

    Sent from my White Galaxy Note using Tapatalk 2

    Thanks alot mate for the kind words, those mean more than any thanks button presses :)

    I just wonder how can someone just use something without even reporting if it failed, succeeded, ugly, beautiful or any type of interacting!

    But that's life, and nice people like you, chas, tre, anti, and the whole gang make everything worth it and you hope you like the mod :D