Thanox 墓碑情景模式
2022年6月21日大约 4 分钟约 1346 字
Thanox 墓碑情景模式
最终合并 2022.06.06
分为两个版本,普通版和音频焦点版,根据自己需求选一个
普通版
[
{
"name": "NoActive",
"description": "普通版-应用进入后台冻结进程",
"priority": -1,
"condition": "frontPkgChanged",
"actions": [
"if(thanos.getActivityManager().isPkgSmartStandByEnabled(to)){su.exe(\"kill -CONT `pgrep -f \"+ to + \"`\");su.exe(\"appops set \" +to + \" WAKE_LOCK default\")}",
"if(!thanos.getActivityManager().isPkgSmartStandByEnabled(from)){break}",
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"su.exe(\"appops set \" + from + \" WAKE_LOCK ignore\");",
"Thread.sleep(2000);",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(from)){su.exe(\"kill -STOP `pgrep -f \"+ from +\"`\")};"
]
}
]
音频焦点版
[
{
"name": "NoActive",
"description": " 音频焦点版-应用进入后台冻结进程",
"priority": -1,
"condition": "frontPkgChanged",
"actions": [
"if(thanos.getActivityManager().isPkgSmartStandByEnabled(to)){su.exe(\"kill -CONT `pgrep -f \"+ to + \"`\");su.exe(\"appops set \" +to + \" WAKE_LOCK default\")}",
"if(!thanos.getActivityManager().isPkgSmartStandByEnabled(from)){break}",
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"if(su.exe(\"dumpsys audio|grep client:|grep -v died|cut -d ' ' -f 6\").out.contains(from)){break}",
"su.exe(\"appops set \" + from + \" WAKE_LOCK ignore\");",
"Thread.sleep(2000);",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(from)){su.exe(\"kill -STOP `pgrep -f \"+ from +\"`\")};"
]
}
]
[
{
"name": "NoActive(Plus)",
"description": " 音频焦点版-应用通知移除冻结进程",
"priority": 1,
"condition": "notificationRemoved && thanos.getActivityManager().isPkgSmartStandByEnabled(pkgName)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(pkgName + \"/\")){break}}",
"su.exe(\"appops set \" + pkgName + \" WAKE_LOCK ignore\");",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(pkgName)){su.exe(\"kill -STOP `pgrep -f \"+ pkgName +\"`\")};"
]
}
]
2022.06.05 更新
不再使用 whiteApps 全局变量,使用乖巧规则,即乖巧 KEEP 规则就是白名单
解冻(通用)
[
{
"name": "解冻进程(通用)",
"description": "当应用进入前台时解冻进程",
"priority": 1,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(to)",
"actions": [
"su.exe(\"kill -CONT `pgrep -f \"+ to + \"`\");",
"su.exe(\"appops set \" +to + \" WAKE_LOCK default\");"
]
}
]
冻结有两个版本,一个普通版,一个跳过音频焦点版(获得音频焦点的应用不会被冻结,大部分音乐播放器在播放的时候都会获取音频焦点,暂停时取消焦点,部分流氓 APP 暂停不会取消音频焦点,由于是从 shell 取的值,可能部分机子会有问题?) 全局变量 whiteApps 可添加白名单 APP 跳过墓碑仅乖巧
普通版
[
{
"name": "冻结进程(AppOps)",
"description": "普通版-当应用进入后台时设置AppOps",
"priority": 1,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(from)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"su.exe(\"appops set \" + from + \" WAKE_LOCK ignore\");"
]
}
]
[
{
"name": "冻结进程",
"description": "普通版-当应用进入后台时冻结进程",
"priority": 2,
"delay": 2000,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(from)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(from)){su.exe(\"kill -STOP `pgrep -f \"+ from +\"`\")};"
]
}
]
跳过音频焦点版
(推荐开启乖巧模式跳过通知的应用或者设置乖巧规则)
[
{
"name": "冻结进程(AppOps)",
"description": "跳过音频焦点版-当应用进入后台时设置AppOps",
"priority": 1,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(from)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"if(su.exe(\"dumpsys audio|grep client:|grep -v died|cut -d ' ' -f 6\").out.contains(from)){break}",
"su.exe(\"appops set \" + from + \" WAKE_LOCK ignore\");"
]
}
]
[
{
"name": "冻结进程",
"description": "跳过音频焦点版-当应用进入后台时冻结进程",
"priority": 2,
"delay": 2000,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(from)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"if(su.exe(\"dumpsys audio|grep client:|grep -v died|cut -d ' ' -f 6\").out.contains(from)){break}",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(from)){su.exe(\"kill -STOP `pgrep -f \"+ from +\"`\")};"
]
}
]
[
{
"name": "冻结进程(增强)",
"description": "跳过音频焦点版-当应用通知移除时冻结进程",
"priority": 1,
"condition": "notificationRemoved && thanos.getActivityManager().isPkgSmartStandByEnabled(pkgName)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(pkgName + \"/\")){break}}",
"su.exe(\"appops set \" + pkgName + \" WAKE_LOCK ignore\");",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(pkgName)){su.exe(\"kill -STOP `pgrep -f \"+ pkgName +\"`\")};"
]
}
]
合并
合并冻结
[
{
"name": "冻结进程(合并)",
"description": "当应用进入后台时冻结进程",
"priority": -1,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(from)",
"actions": [
"foreach (rule : thanos.getActivityManager().getAllStandbyRules()){if(rule.startsWith(\"KEEP\") && rule.contains(from + \"/\")){break}}",
"su.exe(\"appops set \" + from + \" WAKE_LOCK ignore\");",
"Thread.sleep(2000);",
"if(activity.getFrontAppPackage()!=from && !thanos.windowManager.hasVisibleWindows(from)){su.exe(\"kill -STOP `pgrep -f \"+ from +\"`\")};"
]
}
]
合并解冻
[
{
"name": "解冻进程(合并)",
"description": "当应用进入前台时解冻进程",
"priority": 1,
"condition": "frontPkgChanged && thanos.getActivityManager().isPkgSmartStandByEnabled(to)",
"actions": [
"su.exe(\"kill -CONT `pgrep -f \"+ to + \"`\");",
"su.exe(\"appops set \" +to + \" WAKE_LOCK default\");"
]
}
]
微信
微信保活
[
{
"name": "微信保活(包)",
"description": "微信被杀死时,启动微信进程",
"priority": 1,
"condition": "pkgKilled == true && pkgName==\"com.tencent.mm\"",
"actions": [
"Thread.sleep(4000);",
"activity.launchProcessForPackage(\"com.tencent.mm\")"
]
}
]
微信保活(自改)
[
{
"name": "微信保活双服务(自改)",
"description": "微信被杀死时,启动微信进程",
"priority": 1,
"condition": "pkgKilled == true && pkgName==\"com.tencent.mm\"",
"actions": [
"Thread.sleep(4000);",
"su.exe('am start-foreground-service com.tencent.mm/com.tencent.mm.booter.CoreService');",
"su.exe('am start-foreground-service com.tencent.mm/com.tencent.mm.service.ProcessService$MMProcessService');"
]
}
]
微信保活 3(自改)
[
{
"name": "微信保活多服务(自改)",
"description": "微信被杀死时,启动微信进程",
"priority": 1,
"condition": "pkgKilled == true && pkgName==\"com.tencent.mm\"",
"actions": [
"Thread.sleep(4000);",
"su.exe('am start-foreground-service com.tencent.mm/com.tencent.mm.booter.CoreService');",
"Thread.sleep(200);",
"su.exe('am start-foreground-service com.tencent.mm/com.tencent.mm.service.ProcessService$MMProcessService');",
"Thread.sleep(200);",
"su.exe('am start-foreground-service com.tencent.mm/com.tencent.mm.ipcinvoker.wx_extension.service.MainProcessIPCService');",
"Thread.sleep(200);",
"su.exe('am start-foreground-service com.tencent.mm/com.tencent.mm.ipcinvoker.wx_extension.service.PushProcessIPCService');"
]
}
]
微信进程优化
[
{
"name": "微信进程优化",
"description": "优化保留双进程",
"priority": 2,
"condition": "frontPkgChanged == true && from == \"com.tencent.mm\"",
"actions": [
"Thread.sleep(8000);",
"su.exe(\"ps -ef|grep com.tencent.mm:|grep -v :push|grep -v grep|awk '{print $2}'|xargs kill -9\")"
]
}
]
QQ 保活
[
{
"name": "QQ保活",
"description": "QQ被杀死时,启动QQ进程",
"priority": 1,
"condition": "pkgKilled == true && (pkgName == \"com.tencent.mobileqq\")",
"actions":
[
"Thread.sleep(4000);",
"su.exe('am start-foreground-service com.tencent.mobileqq/com.tencent.mobileqq.msf.service.MsfService');"
]
}
]
QQ 保活 2
[
{
"name": "QQ保活(包)",
"description": "QQ被杀死时,启动QQ进程",
"priority": 1,
"condition": "pkgKilled == true && pkgName==\"com.tencent.mobileqq\"",
"actions": [
"Thread.sleep(4000);",
"activity.launchProcessForPackage(\"com.tencent.mobileqq\")"
]
}
]
QQ 保活 3
[
{
"name": "QQ保活多服务(自改)",
"description": "QQ被杀死时,启动QQ进程",
"priority": 1,
"condition": "pkgKilled == true && (pkgName == \"com.tencent.mobileqq\")",
"actions":
[
"Thread.sleep(4000);",
"activity.launchProcessForPackage(\"com.tencent.mobileqq\")",
"Thread.sleep(400);",
"su.exe('am start-foreground-service com.tencent.mobileqq/com.tencent.mobileqq.msf.service.MsfService');",
"Thread.sleep(400);",
"su.exe('am start-foreground-service com.tencent.mobileqq/com.tencent.mobileqq.msf.service.MSFAliveJobService');"
]
}
]
QQ 进程优化
[
{
"name": "QQ进程优化",
"description": "优化保留双进程",
"priority": 2,
"condition": "frontPkgChanged == true && from == \"com.tencent.mobileqq\"",
"actions": [
"Thread.sleep(5000);",
"su.exe(\"ps -ef|grep com.tencent.mobileqq:|grep -v :MSF|grep -v grep|awk '{print $2}'|xargs kill -9\")"
]
}
]