Dark tabs for Zenith! Mirror of https://github.com/mac-user669/ZenithDark
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.0KB

  1. #import <Preferences/PSListController.h>
  2. @import UIKit;
  3. // image for share button
  4. #define kImagePath @"/Library/Application Support/ZenithDark/ZNDark.png"
  5. @interface ZNDarkPrefsRootListController : PSListController
  6. @property (nonatomic, strong) UIBlurEffect *respringBlur;
  7. @property (nonatomic, strong) UIVisualEffectView *respringEffectView;
  8. @property (nonatomic, strong) UIWindow *mainAppRootWindow;
  9. @end
  10. // we use this to respring our device!
  11. @interface NSTask : NSObject
  12. @property (copy) NSArray *arguments;
  13. @property (copy) NSString *currentDirectoryPath;
  14. @property (copy) NSDictionary *environment;
  15. @property (copy) NSString *launchPath;
  16. @property (readonly) int processIdentifier;
  17. @property (retain) id standardError;
  18. @property (retain) id standardInput;
  19. @property (retain) id standardOutput;
  20. + (id)currentTaskDictionary;
  21. + (id)launchedTaskWithDictionary:(id)arg1;
  22. + (id)launchedTaskWithLaunchPath:(id)arg1 arguments:(id)arg2;
  23. - (id)init;
  24. - (void)interrupt;
  25. - (bool)isRunning;
  26. - (void)launch;
  27. - (bool)resume;
  28. - (bool)suspend;
  29. - (void)terminate;
  30. @end