├── .DS_Store ├── .github └── CODEOWNERS ├── LICENSE ├── RBF Detector.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── lucci.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── lucci.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── RBF Detector ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x 1.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32 1.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ ├── HappyIcon.imageset │ │ ├── Contents.json │ │ └── icons8-smiley-50.png │ ├── MenuIconMain.imageset │ │ ├── Contents.json │ │ ├── RBF_Menu_Icon 1.png │ │ ├── RBF_Menu_Icon 2.png │ │ └── RBF_Menu_Icon.png │ ├── NoExpIcon.imageset │ │ ├── Contents.json │ │ └── icons8-bored-48.png │ ├── SadIcon.imageset │ │ ├── Contents.json │ │ └── icons8-sad-50.png │ └── SleepyIcon.imageset │ │ ├── Contents.json │ │ └── icons8-sleepy-48.png ├── Base.lproj │ └── Main.storyboard ├── RBF_Detector.entitlements ├── SettingsWindowController.swift └── ViewController.swift ├── RBF DetectorTests └── RBF_DetectorTests.swift ├── RBF DetectorUITests ├── RBF_DetectorUITests.swift └── RBF_DetectorUITestsLaunchTests.swift ├── RBF-Detector-Info.plist └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @siggalucci13 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/LICENSE -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/project.xcworkspace/xcuserdata/lucci.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/project.xcworkspace/xcuserdata/lucci.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/xcuserdata/lucci.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/xcuserdata/lucci.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /RBF Detector.xcodeproj/xcuserdata/lucci.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector.xcodeproj/xcuserdata/lucci.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /RBF Detector/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/.DS_Store -------------------------------------------------------------------------------- /RBF Detector/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/AppDelegate.swift -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x 1.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_32x32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_32x32 1.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/HappyIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/HappyIcon.imageset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/HappyIcon.imageset/icons8-smiley-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/HappyIcon.imageset/icons8-smiley-50.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/MenuIconMain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/MenuIconMain.imageset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/MenuIconMain.imageset/RBF_Menu_Icon 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/MenuIconMain.imageset/RBF_Menu_Icon 1.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/MenuIconMain.imageset/RBF_Menu_Icon 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/MenuIconMain.imageset/RBF_Menu_Icon 2.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/MenuIconMain.imageset/RBF_Menu_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/MenuIconMain.imageset/RBF_Menu_Icon.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/NoExpIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/NoExpIcon.imageset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/NoExpIcon.imageset/icons8-bored-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/NoExpIcon.imageset/icons8-bored-48.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/SadIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/SadIcon.imageset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/SadIcon.imageset/icons8-sad-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/SadIcon.imageset/icons8-sad-50.png -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/SleepyIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/SleepyIcon.imageset/Contents.json -------------------------------------------------------------------------------- /RBF Detector/Assets.xcassets/SleepyIcon.imageset/icons8-sleepy-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Assets.xcassets/SleepyIcon.imageset/icons8-sleepy-48.png -------------------------------------------------------------------------------- /RBF Detector/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RBF Detector/RBF_Detector.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/RBF_Detector.entitlements -------------------------------------------------------------------------------- /RBF Detector/SettingsWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/SettingsWindowController.swift -------------------------------------------------------------------------------- /RBF Detector/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF Detector/ViewController.swift -------------------------------------------------------------------------------- /RBF DetectorTests/RBF_DetectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF DetectorTests/RBF_DetectorTests.swift -------------------------------------------------------------------------------- /RBF DetectorUITests/RBF_DetectorUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF DetectorUITests/RBF_DetectorUITests.swift -------------------------------------------------------------------------------- /RBF DetectorUITests/RBF_DetectorUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF DetectorUITests/RBF_DetectorUITestsLaunchTests.swift -------------------------------------------------------------------------------- /RBF-Detector-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/RBF-Detector-Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siggalucci13/RBFDetector/HEAD/README.md --------------------------------------------------------------------------------