Skip to content

Instantly share code, notes, and snippets.

@BurgerZ
BurgerZ / gist:10498d3a348630058c70
Created October 28, 2015 05:35
iTools update disable (hosts)
127.0.0.1 itools.hk
127.0.0.1 update.itools.hk
127.0.0.1 ol-cn.itools.hk
127.0.0.1 serv2.itools.hk
127.0.0.1 stat2.itools.hk
127.0.0.1 serv-cn.itools.hk
127.0.0.1 www.1taoji.com
127.0.0.1 andrv.itools.hk
127.0.0.1 dl.itools.hk
127.0.0.1 lxcdn.slooti.com
@BurgerZ
BurgerZ / MiuiHome
Created November 22, 2014 08:31
Hide hotseats icons labels in MIUI v5 (maybe v6 too) with Xposed/WSM
private static void hideHotSeatsLabels() {
try {
Class.forName("com.miui.home.launcher.ShortcutIcon", false, mClassLoader);
XposedHelpers.findAndHookMethod("com.miui.home.launcher.ShortcutIcon", mClassLoader,
"onFinishInflate", new XC_MethodHook() {
@Override
protected void afterHookedMethod(MethodHookParam param) throws Throwable {
hide(param);
}
});