// // HandleSwitchTo.swift // RSwitch // // Created by hrbrmstr on 8/25/19. // Copyright © 2019 Bob Rudis. All rights reserved. // import Foundation import Foundation import Cocoa extension AppDelegate { @objc func switch_to(_ sender: NSMenuItem?) { let app = sender!.representedObject as! NSRunningApplication app.activate(options: NSApplication.ActivationOptions.activateIgnoringOtherApps) } }