This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
notUnderTime/Tweak.xm
Micah Gomez d2f155f1a5 v 4.2.2
2020-01-07 00:01:59 -07:00

22 lines
591 B
Text

#import "important.h"
#import <spawn.h>
@interface _UIStatusBarStringView : UIView
@property (copy) NSString *text;
@end
%hook _UIStatusBarStringView
NSString *stringTest = @"%";
- (void)setText:(NSString *)text {
if(GetPrefBool(@"Enable") && ![text containsString:@":"] && ![text containsString:@"‎◀︎"] && ![text containsString:stringTest] && ![text isEqual:@""] && ![text isEqual:@"LTE"] && ![text isEqual:@"4G"] && ![text isEqual:@"3G"]) {
NSString *lineOne = GetPrefString(@"lineOne");
NSLog(@"UnderTime '%@'", text);
%orig(lineOne);
}
else {
%orig(text);
}
}
%end