├── LICENSE ├── README.md ├── TheNotch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── home.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── TheNotch ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ ├── New Project (4) copy-1.png │ ├── New Project (4) copy-2.png │ ├── New Project (4) copy-3.png │ ├── New Project (4) copy-4.png │ ├── New Project (4) copy-5.png │ ├── New Project (4) copy-6.png │ ├── New Project (4) copy-7.png │ ├── New Project (4) copy-8.png │ ├── New Project (4) copy-9.png │ └── New Project (4) copy.png └── Contents.json ├── ConfigView.swift ├── Info.plist ├── NotchView.swift ├── NotchWindow.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── TheNotch.entitlements └── TheNotchApp.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/README.md -------------------------------------------------------------------------------- /TheNotch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TheNotch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TheNotch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TheNotch.xcodeproj/xcuserdata/home.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch.xcodeproj/xcuserdata/home.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-1.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-2.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-3.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-4.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-5.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-6.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-7.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-8.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy-9.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/AppIcon.appiconset/New Project (4) copy.png -------------------------------------------------------------------------------- /TheNotch/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TheNotch/ConfigView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/ConfigView.swift -------------------------------------------------------------------------------- /TheNotch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Info.plist -------------------------------------------------------------------------------- /TheNotch/NotchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/NotchView.swift -------------------------------------------------------------------------------- /TheNotch/NotchWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/NotchWindow.swift -------------------------------------------------------------------------------- /TheNotch/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TheNotch/TheNotch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/TheNotch.entitlements -------------------------------------------------------------------------------- /TheNotch/TheNotchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgmoose/The-Notch/HEAD/TheNotch/TheNotchApp.swift --------------------------------------------------------------------------------