aboutsummaryrefslogtreecommitdiffstats
path: root/Low Battery Yup/LaunchAgentManager.h
blob: 5a9fa44b5e1d0fc15a57f0cdd4a7e8c57c3ee653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  LaunchAgentManager.h
//  Low Battery Yup.d
//
//  Created by TW on 12/2/16.
//  Copyright (c) 2016 TW. All rights reserved.
//

#import <Foundation/Foundation.h>

#define LAUNCH_AGENTS_PATH @"~/Library/LaunchAgents"

@interface LaunchAgentManager : NSObject {
	NSFileManager *_file_manager;
}

- (BOOL)install;
- (BOOL)uninstall;

@end