-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTweak.xm
83 lines (64 loc) · 1.51 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
/*
AerialChanger
Copyright 2020 J.K. Hayslip (@iKilledAppl3) & iKilledAppl3 LLC. All rights reserved.
*/
#import "AerialChanger.h"
%hook TVPURLMediaItem
-(NSURL *)url {
if (kEnabled) {
return [NSURL fileURLWithPath:kVideoPath];
}
else {
return %orig;
}
}
%end
%hook TVILocationLabelView
-(void)layoutSubviews {
if (kEnabled) {
self.hidden = YES;
}
else {
%orig;
}
}
%end
// tvOS 14
%hook TVISAerialAsset
-(NSURL *)localAssetURL {
if (kEnabled) {
if (@available(tvOS 14, *)) {
return [NSURL fileURLWithPath:kVideoPath];
}
else {
return %orig;
}
}
else {
return %orig;
}
}
%end
%hook IdleScreenUILabel
-(void)layoutSubviews {
if (kEnabled) {
[self removeFromSuperview];
}
else {
%orig;
}
}
%end
// Load preferences to make sure changes are written to the plist
static void loadPrefs() {
NSMutableDictionary *prefs = [[NSMutableDictionary alloc] initWithContentsOfFile:PLIST_PATH];
//our preference values that write to a plist file when a user selects somethings
kEnabled = [([prefs objectForKey:@"kEnabled"] ?: @(NO)) boolValue];
kChosenScreensaver = [prefs objectForKey:@"kChosenScreensaver"];
}
%ctor {
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL, (CFNotificationCallback) loadPrefs, CFSTR("com.ikilledappl3.aerialchanger.prefschanged"), NULL, CFNotificationSuspensionBehaviorDeliverImmediately);
loadPrefs();
// Nice try Apple #checkm8
%init(IdleScreenUILabel=objc_getClass("IdleScreenUI.AerialLocationLabelUIView"));
}