├── .gitignore ├── Executables └── sqa ├── LICENSE ├── README.md ├── SlowQuitApps.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SlowQuitApps ├── Base.lproj │ └── SQAMainMenu.xib ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── 128pt@1x.png │ │ ├── 128pt@2x.png │ │ ├── 16pt@1x.png │ │ ├── 16pt@2x.png │ │ ├── 256pt@1x.png │ │ ├── 256pt@2x.png │ │ ├── 32pt@1x.png │ │ ├── 32pt@2x.png │ │ ├── 512pt@1x.png │ │ ├── 512pt@2x.png │ │ └── Contents.json ├── SQAAppDelegate.h ├── SQAAppDelegate.m ├── SQAAutostart.h ├── SQAAutostart.m ├── SQADialogs.h ├── SQADialogs.m ├── SQAOverlayView.h ├── SQAOverlayView.m ├── SQAOverlayViewInterface.h ├── SQAOverlayWindowController.h ├── SQAOverlayWindowController.m ├── SQAPreferences.h ├── SQAPreferences.m ├── SQAQResolver.h ├── SQAQResolver.m ├── SQAStateMachine.h ├── SQAStateMachine.m ├── SlowQuitApps-Info.plist ├── SlowQuitApps-Prefix.pch ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings └── main.m ├── SlowQuitAppsLauncher ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── SQALMainMenu.xib ├── Info.plist ├── SQALAppDelegate.h ├── SQALAppDelegate.m └── main.m ├── SlowQuitAppsTests ├── SlowQuitAppsTests-Info.plist ├── SlowQuitAppsTests.m └── en.lproj │ └── InfoPlist.strings └── img └── preview.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/.gitignore -------------------------------------------------------------------------------- /Executables/sqa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/Executables/sqa -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/README.md -------------------------------------------------------------------------------- /SlowQuitApps.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SlowQuitApps.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SlowQuitApps/Base.lproj/SQAMainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Base.lproj/SQAMainMenu.xib -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/128pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/128pt@1x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/128pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/128pt@2x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/16pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/16pt@1x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/16pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/16pt@2x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/256pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/256pt@1x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/256pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/256pt@2x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/32pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/32pt@1x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/32pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/32pt@2x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/512pt@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/512pt@1x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/512pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/512pt@2x.png -------------------------------------------------------------------------------- /SlowQuitApps/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SlowQuitApps/SQAAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAAppDelegate.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAAppDelegate.m -------------------------------------------------------------------------------- /SlowQuitApps/SQAAutostart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAAutostart.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAAutostart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAAutostart.m -------------------------------------------------------------------------------- /SlowQuitApps/SQADialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQADialogs.h -------------------------------------------------------------------------------- /SlowQuitApps/SQADialogs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQADialogs.m -------------------------------------------------------------------------------- /SlowQuitApps/SQAOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAOverlayView.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAOverlayView.m -------------------------------------------------------------------------------- /SlowQuitApps/SQAOverlayViewInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAOverlayViewInterface.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAOverlayWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAOverlayWindowController.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAOverlayWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAOverlayWindowController.m -------------------------------------------------------------------------------- /SlowQuitApps/SQAPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAPreferences.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAPreferences.m -------------------------------------------------------------------------------- /SlowQuitApps/SQAQResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAQResolver.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAQResolver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAQResolver.m -------------------------------------------------------------------------------- /SlowQuitApps/SQAStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAStateMachine.h -------------------------------------------------------------------------------- /SlowQuitApps/SQAStateMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SQAStateMachine.m -------------------------------------------------------------------------------- /SlowQuitApps/SlowQuitApps-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SlowQuitApps-Info.plist -------------------------------------------------------------------------------- /SlowQuitApps/SlowQuitApps-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/SlowQuitApps-Prefix.pch -------------------------------------------------------------------------------- /SlowQuitApps/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /SlowQuitApps/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SlowQuitApps/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitApps/main.m -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/Base.lproj/SQALMainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/Base.lproj/SQALMainMenu.xib -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/Info.plist -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/SQALAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/SQALAppDelegate.h -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/SQALAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/SQALAppDelegate.m -------------------------------------------------------------------------------- /SlowQuitAppsLauncher/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsLauncher/main.m -------------------------------------------------------------------------------- /SlowQuitAppsTests/SlowQuitAppsTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsTests/SlowQuitAppsTests-Info.plist -------------------------------------------------------------------------------- /SlowQuitAppsTests/SlowQuitAppsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/SlowQuitAppsTests/SlowQuitAppsTests.m -------------------------------------------------------------------------------- /SlowQuitAppsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /img/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dteoh/SlowQuitApps/HEAD/img/preview.gif --------------------------------------------------------------------------------