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
2020-01-06 21:25:06 -07:00

20 lines
353 B
Text

#import "important.h"
#import <spawn.h>
@interface _UIStatusBarStringView : UIView
@property (copy) NSString *text;
@end
%hook _UIStatusBarStringView
- (void)setText:(NSString *)text {
if(GetPrefBool(@"Enable") && ![text containsString:@":"]) {
NSString *lineOne = GetPrefString(@"lineOne");
%orig(lineOne);
}
else {
%orig(text);
}
}
%end