mirror of
https://github.com/leminlimez/Nugget.git
synced 2025-04-08 04:23:05 +08:00
clean up daemon code
This commit is contained in:
42
tweaks/daemons_tweak.py
Normal file
42
tweaks/daemons_tweak.py
Normal file
@@ -0,0 +1,42 @@
|
||||
from enum import Enum
|
||||
|
||||
class Daemon(Enum):
|
||||
thermalmonitord = ["com.apple.thermalmonitord"]
|
||||
OTA = [
|
||||
"com.apple.mobile.softwareupdated",
|
||||
"com.apple.OTATaskingAgent",
|
||||
"com.apple.softwareupdateservicesd"
|
||||
]
|
||||
UsageTrackingAgent = ["com.apple.UsageTrackingAgent"]
|
||||
GameCenter = ["com.apple.gamed"]
|
||||
ScreenTime = [
|
||||
"com.apple.ScreenTimeAgent",
|
||||
"com.apple.homed",
|
||||
"com.apple.familycircled"
|
||||
]
|
||||
CrashReports = [
|
||||
"com.apple.ReportCrash",
|
||||
"com.apple.ReportCrash.Jetsam",
|
||||
"com.apple.ReportMemoryException",
|
||||
"com.apple.OTACrashCopier",
|
||||
"com.apple.analyticsd",
|
||||
"com.apple.aslmanager",
|
||||
"com.apple.coresymbolicationd",
|
||||
"com.apple.crash_mover",
|
||||
"com.apple.crashreportcopymobile",
|
||||
"com.apple.DumpBasebandCrash",
|
||||
"com.apple.DumpPanic",
|
||||
"com.apple.logd",
|
||||
"com.apple.logd.admin",
|
||||
"com.apple.logd.events",
|
||||
"com.apple.logd.watchdog",
|
||||
"com.apple.logd_reporter",
|
||||
"com.apple.logd_reporter.report_statistics",
|
||||
"com.apple.system.logger",
|
||||
"com.apple.syslogd"
|
||||
]
|
||||
ATWAKEUP = ["com.apple.atc.atwakeup"]
|
||||
Tips = ["com.apple.tipsd"]
|
||||
VPN = ["com.apple.racoon"]
|
||||
ChineseLAN = ["com.apple.wapic"]
|
||||
HealthKit = ["com.apple.healthd"]
|
||||
Reference in New Issue
Block a user