90acf2b220
A bit overdue, but better late than never. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
18 lines
723 B
Objective-C
18 lines
723 B
Objective-C
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
NSString *appIdInfoDictionaryKey = @"com.wireguard.macos.app_id";
|
|
NSString *appId = [NSBundle.mainBundle objectForInfoDictionaryKey:appIdInfoDictionaryKey];
|
|
|
|
NSString *launchCode = @"LaunchedByWireGuardLoginItemHelper";
|
|
NSAppleEventDescriptor *paramDescriptor = [NSAppleEventDescriptor descriptorWithString:launchCode];
|
|
|
|
[NSWorkspace.sharedWorkspace launchAppWithBundleIdentifier:appId options:NSWorkspaceLaunchWithoutActivation
|
|
additionalEventParamDescriptor:paramDescriptor launchIdentifier:NULL];
|
|
return 0;
|
|
}
|