Skip to content

Instantly share code, notes, and snippets.

@nomeyer
Last active February 24, 2016 17:38
Show Gist options
  • Save nomeyer/6a8c89e03290bbc5b673 to your computer and use it in GitHub Desktop.
Save nomeyer/6a8c89e03290bbc5b673 to your computer and use it in GitHub Desktop.
Get the PID of the frontmost app on Mac OS X
#import <AppKit/AppKit.h>
NSRunningApplication* frontApp = [[NSWorkspace sharedWorkspace] frontmostApplication];
pid_t pid = [frontApp processIdentifier];
// fprintf(stdout, "%s\n", [[NSString stringWithFormat:@"%ld", (long)pid] UTF8String]);
// fflush(stdout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment