Blog (Miui-au) vom Hauptenwickler des J-Style-Mods
Enwickler-Website (Miui-dev
eigene Theme basteln (Google-Übersetzung)
Theme basteln in englisch
MiUi Review (mit Screenshots und Text)
Damit der Browser nicht die Mobile Version der Website anzeigt, kann man einen Trick anwenden
Das wars schon
Update Miui-au 12.11 R2, what i've done:
#!/bin/sh ################################################################ # # # Tom's Font-Changer 0.9.1 # # # # Voraussetzung: root und s-off # # Folder /sdcard/Fonts/droidFonts auf sdcard # # Folder /sdcard/Fonts mit verschiedenen Fonts # # # ################################################################ # Pfad von Android-SDK-Tools Verzeichnis cd /home/tom/android-sdk-linux_86/tools # hier werden die zwei Schriften (normal und bold) definiert normal=ComicSansMSMod.ttf; bold=ComicSansMSMod-Bold.ttf; # /sytem schreibbar einbinden adb remount # Inhalt von droidFonts löschen adb shell rm -r /sdcard/Fonts/droidFonts/* # gewünschter Font aus Fonts nach droidFonts kopieren und umbenennen adb shell cp /sdcard/Fonts/$normal /sdcard/Fonts/droidFonts/DroidSans.ttf adb shell cp /sdcard/Fonts/$normal /sdcard/Fonts/droidFonts/Arial.ttf # gewünschter Font aus Fonts nach droidFonts kopieren und umbenennen adb shell cp /sdcard/Fonts/$bold /sdcard/Fonts/droidFonts/DroidSans-Bold.ttf adb shell cp /sdcard/Fonts/$bold /sdcard/Fonts/droidFonts/Arial-Bold.ttf # neue Fonts nach /system kopieren adb shell cp /sdcard/Fonts/droidFonts/* /system/fonts/ # eigene Tastatur nach /system kopieren adb shell cp /sdcard/download/HTC_IME_gIMpSTa.apk /system/app/HTC_IME_hi22.apk # Desire neu starten adb reboot
$ tom@tom-desktop:~$ adb remount $ remount succeeded
$ tom@tom-desktop:~$ adb shell $ mv /system/media/bootanimation.zip /system/media/bootanimation2.zip
$ tom@tom-desktop:~$ adb push Öffentlich/bootanimation.zip /system/media $ 1300 KB/s (890127 bytes in 0.668s)
$ tom@tom-desktop:~$ adb reboot $ tom@tom-desktop:~$