summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-01-15 04:29:32 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2014-01-15 04:29:32 -0800
commitc5182285772ffdfabf5731528da3ffbf1dfd2290 (patch)
treef95633f302c9e0a9588489e8f996612b19062b9b
parenta41140486c4507fb803fdc20272e6a746965afb6 (diff)
Do not delete notification settings (parrotgeek1).
-rw-r--r--Tweak.xm10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tweak.xm b/Tweak.xm
index e91b4b6..9b4a133 100644
--- a/Tweak.xm
+++ b/Tweak.xm
@@ -308,6 +308,16 @@ static void AlertIfNeeded() {
} %end
+// we don't want this state persisted back to disk, however: that is just really really irritating
+
+%hook BBServer
+- (void) _writeBehaviorOverrides {}
+- (void) _writeSectionOrder {}
+- (void) _writeClearedSections {}
+- (void) _writeSectionInfo {}
+%end
+
+
// on iOS 6.0, Apple split parts of SpringBoard into a daemon called backboardd, including app launches
// in order to allow safe mode to propogate into applications, we need to then tell backboardd here
// XXX: (all of this should be replaced, however, with per-process launchd-mediated exception handling)