Does this ver work on the new ota 2.2?
Not unless you're deodexed...I've heard xUltimate can help with that.
already done, was wondering if its possible to do this without the bootstrap. Without having a full sbf for 2.2 I dont really want to mess with the bootstrap incase of warranty issues.
I was in the same boat and didnt really want to apply the custom recovery. I did get the theme installed, but it takes a bit of work in ADB:
To start with, I'm running the OTA 2.2, rooted and deodexed using xUltimate.
I then unzipped the update file. Moved the following folders from the update file to the root of the SDcard under a folder called "theme" (from and to folders below):
/Fabolous_NexTheme_Froyo_DX/system/app/ ---> /sdcard/theme/app/
/Fabolous_NexTheme_Froyo_DX/system/fonts/ ---> /sdcard/theme/fonts/
/Fabolous_NexTheme_Froyo_DX/system/framework/ ---> /sdcard/theme/framework/
Then open a command prompt and enter the following commands (assuming you have ADB installed and working):
adb shell
su
stop
mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system
cp /sdcard/theme/fonts/* /system/fonts/
cp /sdcard/theme/app/* /system/app/
cp /sdcard/theme/framework/* /system/framework/
mount -o ro,remount -t ext3 /dev/block/mmcblk1p21 /system
reboot
This manual apply method should work for his other update files as well.
By the way, Thanks Fab!