Skip to content

Instantly share code, notes, and snippets.

View BrokenFreelancer's full-sized avatar

Broken Freelancer BrokenFreelancer

View GitHub Profile
@BrokenFreelancer
BrokenFreelancer / nsapp_menuStructure_example.js
Last active August 20, 2018 21:42 — forked from uchcode/nsapp_servicesmenu_example.js
NSApp.Menu Structure JXA example
#!/usr/bin/osascript -l JavaScript
ObjC.import('Cocoa') ;
function MainMenu() {
function MenuItem(title, action, key) {
return $.NSMenuItem.alloc.initWithTitleActionKeyEquivalent(title, action, key)
} ;
function MenuItemSeparator() {