gitextract_hkpr8hdc/ ├── .gitignore ├── BuildTools/ │ ├── Empty.swift │ ├── Package.resolved │ └── Package.swift ├── DeskPad/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AccentColor.colorset/ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── TitleBarActive.colorset/ │ │ │ └── Contents.json │ │ └── TitleBarInactive.colorset/ │ │ └── Contents.json │ ├── Backend/ │ │ ├── AppState.swift │ │ ├── MouseLocation/ │ │ │ ├── MouseLocationSideEffect.swift │ │ │ └── MouseLocationState.swift │ │ ├── ScreenConfiguration/ │ │ │ ├── ScreenConfigurationSideEffect.swift │ │ │ └── ScreenConfigurationState.swift │ │ ├── SideEffectsMiddleware.swift │ │ └── Store.swift │ ├── CGVirtualDisplayPrivate.h │ ├── DeskPad-Bridging-Header.h │ ├── DeskPad.entitlements │ ├── Frontend/ │ │ └── Screen/ │ │ ├── ScreenViewController.swift │ │ └── ScreenViewData.swift │ ├── Helpers/ │ │ └── NSScreen+Extensions.swift │ ├── SubscriberViewController.swift │ └── main.swift ├── DeskPad.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ └── swiftpm/ │ └── Package.resolved ├── Icon/ │ └── DeskPad.pxd ├── LICENSE.md └── README.md