-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTweak.xm
executable file
·164 lines (130 loc) · 6.27 KB
/
Tweak.xm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#define LD_DEBUG NO
#import <UIKit/UIKit.h>
#import <AudioToolbox/AudioToolbox.h>
#import <objc/runtime.h>
#import <notify.h>
#import "FLEXManager.h"
#import <rootless.h>
#import <dlfcn.h>
static BOOL tweakEnabled = YES;
static NSUserDefaults *preferences = nil;
static BOOL tune = NO;
NSString *dylibPath = ROOT_PATH_NS(@"/Library/MobileSubstrate/DynamicLibraries/libFLEX.dylib");
@interface SBApplication
- (NSString *)bundleIdentifier;
@end
@interface SpringBoard
- (SBApplication *)_accessibilityFrontMostApplication;
@end
@interface SBLockScreenManager : NSObject
+ (instancetype)sharedInstance;
- (BOOL)isUILocked;
@end
// Function to handle preferences changed
static void preferencesChanged(CFNotificationCenterRef center, void *observer, CFStringRef name, const void *object, CFDictionaryRef userInfo) {
}
%hook SpringBoard
- (BOOL)_handlePhysicalButtonEvent:(UIPressesEvent *)event {
BOOL upPressed = NO;
BOOL downPressed = NO;
for (UIPress *press in event.allPresses.allObjects) {
if (press.type == 102 && press.force == 1) {
upPressed = YES;
}
if (press.type == 103 && press.force == 1) {
downPressed = YES;
}
}
if (upPressed && downPressed) {
// Is the tweak enabled?
NSString *currentID = NSBundle.mainBundle.bundleIdentifier;
if ([currentID isEqualToString:@"com.apple.springboard"]) {
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback)preferencesChanged, CFSTR("com.joshua.VFPB.preferences.changed"), NULL, CFNotificationSuspensionBehaviorCoalesce);
preferences = [[NSUserDefaults alloc] initWithSuiteName:@"com.joshua.VFPB.plist"];
[preferences registerDefaults:@{
@"Enabled": @(tweakEnabled)
}];
tweakEnabled = [[preferences objectForKey:@"Enabled"] boolValue];
} else {
int regToken;
NSString *notifForBundle = [NSString stringWithFormat:@"com.joshua.volumeflex/%@", currentID];
notify_register_dispatch(notifForBundle.UTF8String, ®Token, dispatch_get_main_queue(), ^(int token) {
dlopen(dylibPath.UTF8String, RTLD_NOW);
NSLog(@"libraryHandle = %s", dlerror());
[[objc_getClass("FLEXManager") sharedManager] showExplorer];
});
}
// Do you want a tune?
if ([currentID isEqualToString:@"com.apple.springboard"]) {
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback)preferencesChanged, CFSTR("com.joshua.VFPB.preferences.changed.tune"), NULL, CFNotificationSuspensionBehaviorCoalesce);
preferences = [[NSUserDefaults alloc] initWithSuiteName:@"com.joshua.VFPB.plist"];
[preferences registerDefaults:@{
@"tune": @(tune)
}];
tune = [[preferences objectForKey:@"tune"] boolValue];
} else {
int regToken;
NSString *notifForBundle = [NSString stringWithFormat:@"com.joshua.volumeflex/%@", currentID];
notify_register_dispatch(notifForBundle.UTF8String, ®Token, dispatch_get_main_queue(), ^(int token) {
dlopen(dylibPath.UTF8String, RTLD_NOW);
[[objc_getClass("FLEXManager") sharedManager] showExplorer];
});
}
}
if (tweakEnabled) {
SBApplication *frontmostApp = [(SpringBoard *)UIApplication.sharedApplication _accessibilityFrontMostApplication];
// Only proceed if the user is holding down both buttons
if (upPressed && downPressed) {
if (tune) {
// Vibrate and play tune :D
AudioServicesPlaySystemSound(1328);
}
[(SpringBoard *)UIApplication.sharedApplication _accessibilityFrontMostApplication];
// if frontmostApp is true and the phone is not locked
if (frontmostApp) {
notify_post([[NSString stringWithFormat:@"com.joshua.volumeflex/%@", frontmostApp.bundleIdentifier] UTF8String]);
} else {
dlopen(dylibPath.UTF8String, RTLD_NOW);
[[objc_getClass("FLEXManager") sharedManager] showExplorer];
}
}
}
return %orig;
}
%end
%ctor {
// Is the tweak enabled?
NSString *currentID = NSBundle.mainBundle.bundleIdentifier;
if ([currentID isEqualToString:@"com.apple.springboard"]) {
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback)preferencesChanged, CFSTR("com.joshua.VFPB.preferences.changed"), NULL, CFNotificationSuspensionBehaviorCoalesce);
preferences = [[NSUserDefaults alloc] initWithSuiteName:@"com.joshua.VFPB.plist"];
[preferences registerDefaults:@{
@"Enabled": @(tweakEnabled)
}];
tweakEnabled = [[preferences objectForKey:@"Enabled"] boolValue];
} else {
int regToken;
NSString *notifForBundle = [NSString stringWithFormat:@"com.joshua.volumeflex/%@", currentID];
notify_register_dispatch(notifForBundle.UTF8String, ®Token, dispatch_get_main_queue(), ^(int token) {
dlopen(dylibPath.UTF8String, RTLD_NOW);
[[objc_getClass("FLEXManager") sharedManager] showExplorer];
});
}
// Do you want a tune?
if ([currentID isEqualToString:@"com.apple.springboard"]) {
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback)preferencesChanged, CFSTR("com.joshua.VFPB.preferences.changed.tune"), NULL, CFNotificationSuspensionBehaviorCoalesce);
preferences = [[NSUserDefaults alloc] initWithSuiteName:@"com.joshua.VFPB.plist"];
[preferences registerDefaults:@{
@"tune": @(tune)
}];
tune = [[preferences objectForKey:@"tune"] boolValue];
%init
} else {
int regToken;
NSString *notifForBundle = [NSString stringWithFormat:@"com.joshua.volumeflex/%@", currentID];
notify_register_dispatch(notifForBundle.UTF8String, ®Token, dispatch_get_main_queue(), ^(int token) {
dlopen(dylibPath.UTF8String, RTLD_NOW);
[[objc_getClass("FLEXManager") sharedManager] showExplorer];
});
}
}