├── CGSInternal ├── CGSAccessibility.h ├── CGSCIFilter.h ├── CGSConnection.h ├── CGSCursor.h ├── CGSDebug.h ├── CGSDisplays.h ├── CGSHotKeys.h ├── CGSInternal.h ├── CGSMisc.h ├── CGSNotifications.h ├── CGSRegion.h ├── CGSSession.h ├── CGSTransitions.h ├── CGSWindow.h ├── CGSWorkspace.h ├── CarbonHelpers.h └── Compatability.h ├── English.lproj ├── InfoPlist.strings └── MainMenu.xib ├── ForceQuitUnresponsiveApps-Info.plist ├── ForceQuitUnresponsiveApps.xcodeproj └── project.pbxproj ├── ForceQuitUnresponsiveAppsAppDelegate.h ├── ForceQuitUnresponsiveAppsAppDelegate.m ├── ForceQuitUnresponsiveApps_Prefix.pch └── main.m /CGSInternal/CGSAccessibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSAccessibility.h -------------------------------------------------------------------------------- /CGSInternal/CGSCIFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSCIFilter.h -------------------------------------------------------------------------------- /CGSInternal/CGSConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSConnection.h -------------------------------------------------------------------------------- /CGSInternal/CGSCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSCursor.h -------------------------------------------------------------------------------- /CGSInternal/CGSDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSDebug.h -------------------------------------------------------------------------------- /CGSInternal/CGSDisplays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSDisplays.h -------------------------------------------------------------------------------- /CGSInternal/CGSHotKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSHotKeys.h -------------------------------------------------------------------------------- /CGSInternal/CGSInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSInternal.h -------------------------------------------------------------------------------- /CGSInternal/CGSMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSMisc.h -------------------------------------------------------------------------------- /CGSInternal/CGSNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSNotifications.h -------------------------------------------------------------------------------- /CGSInternal/CGSRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSRegion.h -------------------------------------------------------------------------------- /CGSInternal/CGSSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSSession.h -------------------------------------------------------------------------------- /CGSInternal/CGSTransitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSTransitions.h -------------------------------------------------------------------------------- /CGSInternal/CGSWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSWindow.h -------------------------------------------------------------------------------- /CGSInternal/CGSWorkspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CGSWorkspace.h -------------------------------------------------------------------------------- /CGSInternal/CarbonHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/CarbonHelpers.h -------------------------------------------------------------------------------- /CGSInternal/Compatability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/CGSInternal/Compatability.h -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /ForceQuitUnresponsiveApps-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/ForceQuitUnresponsiveApps-Info.plist -------------------------------------------------------------------------------- /ForceQuitUnresponsiveApps.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/ForceQuitUnresponsiveApps.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ForceQuitUnresponsiveAppsAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/ForceQuitUnresponsiveAppsAppDelegate.h -------------------------------------------------------------------------------- /ForceQuitUnresponsiveAppsAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/ForceQuitUnresponsiveAppsAppDelegate.m -------------------------------------------------------------------------------- /ForceQuitUnresponsiveApps_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/ForceQuitUnresponsiveApps_Prefix.pch -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rentzsch/ForceQuitUnresponsiveApps/HEAD/main.m --------------------------------------------------------------------------------