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.

39 lines
1.2KB

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