├── .gitignore ├── KettleCornService ├── KettleCornSerivce.plist ├── KettleCornService.entitlements ├── KettleCornService.swift ├── KettleCornServiceDelegate.swift ├── KettleCornServiceProtocol.swift └── main.swift ├── KeyPopper Catcher ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── KeyPopper Catcher.entitlements ├── KeyPopper-Catcher-Info.plist └── KeyPopperCatcher.plist ├── KeyPopper Installer ├── KeyPopper.pkgproj ├── install.sh ├── license.rtf └── readme.rtf ├── KeyPopper.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ ├── KeyPopper Catcher.xcscheme │ │ ├── KeyPopper PrefPane.xcscheme │ │ └── PoppingService.xcscheme └── xcuserdata │ └── linus.xcuserdatad │ └── xcschemes │ └── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcschememanagement.plist │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── PoppingService ├── PoppingService.entitlements ├── PoppingService.plist ├── PoppingService.swift ├── PoppingServiceDelegate.swift ├── PoppingServiceProtocol.swift ├── frog.mp3 ├── main.swift ├── moo.mp3 └── pop.mp3 ├── PrefPane ├── Base.lproj │ └── KeyPopper.xib ├── Info.plist ├── KeyPopperPrefPane.swift ├── KeyPopperPreferencesTerms.searchTerms └── PoppingSounds.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/.gitignore -------------------------------------------------------------------------------- /KettleCornService/KettleCornSerivce.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KettleCornService/KettleCornSerivce.plist -------------------------------------------------------------------------------- /KettleCornService/KettleCornService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KettleCornService/KettleCornService.entitlements -------------------------------------------------------------------------------- /KettleCornService/KettleCornService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KettleCornService/KettleCornService.swift -------------------------------------------------------------------------------- /KettleCornService/KettleCornServiceDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KettleCornService/KettleCornServiceDelegate.swift -------------------------------------------------------------------------------- /KettleCornService/KettleCornServiceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KettleCornService/KettleCornServiceProtocol.swift -------------------------------------------------------------------------------- /KettleCornService/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KettleCornService/main.swift -------------------------------------------------------------------------------- /KeyPopper Catcher/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/AppDelegate.swift -------------------------------------------------------------------------------- /KeyPopper Catcher/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /KeyPopper Catcher/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KeyPopper Catcher/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KeyPopper Catcher/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KeyPopper Catcher/KeyPopper Catcher.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/KeyPopper Catcher.entitlements -------------------------------------------------------------------------------- /KeyPopper Catcher/KeyPopper-Catcher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/KeyPopper-Catcher-Info.plist -------------------------------------------------------------------------------- /KeyPopper Catcher/KeyPopperCatcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Catcher/KeyPopperCatcher.plist -------------------------------------------------------------------------------- /KeyPopper Installer/KeyPopper.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Installer/KeyPopper.pkgproj -------------------------------------------------------------------------------- /KeyPopper Installer/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Installer/install.sh -------------------------------------------------------------------------------- /KeyPopper Installer/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Installer/license.rtf -------------------------------------------------------------------------------- /KeyPopper Installer/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper Installer/readme.rtf -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/xcshareddata/xcschemes/KeyPopper Catcher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/xcshareddata/xcschemes/KeyPopper Catcher.xcscheme -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/xcshareddata/xcschemes/KeyPopper PrefPane.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/xcshareddata/xcschemes/KeyPopper PrefPane.xcscheme -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/xcshareddata/xcschemes/PoppingService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/xcshareddata/xcschemes/PoppingService.xcscheme -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/xcuserdata/linus.xcuserdatad/xcschemes/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/xcuserdata/linus.xcuserdatad/xcschemes/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/xcuserdata/linus.xcuserdatad/xcschemes/project.xcworkspace/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/xcuserdata/linus.xcuserdatad/xcschemes/project.xcworkspace/xcschememanagement.plist -------------------------------------------------------------------------------- /KeyPopper.xcodeproj/xcuserdata/linus.xcuserdatad/xcschemes/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/KeyPopper.xcodeproj/xcuserdata/linus.xcuserdatad/xcschemes/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/LICENSE -------------------------------------------------------------------------------- /PoppingService/PoppingService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/PoppingService.entitlements -------------------------------------------------------------------------------- /PoppingService/PoppingService.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/PoppingService.plist -------------------------------------------------------------------------------- /PoppingService/PoppingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/PoppingService.swift -------------------------------------------------------------------------------- /PoppingService/PoppingServiceDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/PoppingServiceDelegate.swift -------------------------------------------------------------------------------- /PoppingService/PoppingServiceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/PoppingServiceProtocol.swift -------------------------------------------------------------------------------- /PoppingService/frog.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/frog.mp3 -------------------------------------------------------------------------------- /PoppingService/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/main.swift -------------------------------------------------------------------------------- /PoppingService/moo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/moo.mp3 -------------------------------------------------------------------------------- /PoppingService/pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PoppingService/pop.mp3 -------------------------------------------------------------------------------- /PrefPane/Base.lproj/KeyPopper.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PrefPane/Base.lproj/KeyPopper.xib -------------------------------------------------------------------------------- /PrefPane/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PrefPane/Info.plist -------------------------------------------------------------------------------- /PrefPane/KeyPopperPrefPane.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PrefPane/KeyPopperPrefPane.swift -------------------------------------------------------------------------------- /PrefPane/KeyPopperPreferencesTerms.searchTerms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PrefPane/KeyPopperPreferencesTerms.searchTerms -------------------------------------------------------------------------------- /PrefPane/PoppingSounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/PrefPane/PoppingSounds.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinusSkucas/KeyPopper/HEAD/README.md --------------------------------------------------------------------------------