gitextract_7pamx728/ ├── .gitignore ├── .gitmodules ├── Clip/ │ ├── AppDelegate.swift │ ├── ApplicationMonitor.swift │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Clip.entitlements │ ├── Components/ │ │ ├── ForwardingNavigationController.swift │ │ └── GradientView.swift │ ├── Extensions/ │ │ ├── PasteboardItem+ActivityItemSource.swift │ │ └── UIDevice+Vibration.swift │ ├── History/ │ │ ├── ClippingTableViewCell.swift │ │ ├── ClippingTableViewCell.xib │ │ └── HistoryViewController.swift │ ├── Info.plist │ ├── Map View/ │ │ ├── ClippingSheet.swift │ │ └── ClippingsMapView.swift │ ├── Pasteboard/ │ │ ├── LocationManager.swift │ │ └── PasteboardMonitor.swift │ ├── Resources/ │ │ └── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Settings.imageset/ │ │ └── Contents.json │ ├── SceneDelegate.swift │ ├── Settings/ │ │ └── SettingsViewController.swift │ └── Types/ │ └── PublishedPipeline.swift ├── Clip.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── Clip.xcscheme │ ├── ClipKit.xcscheme │ └── ClipboardReader.xcscheme ├── ClipBoard/ │ ├── ClipBoard.entitlements │ ├── Info.plist │ └── KeyboardViewController.swift ├── ClipKit/ │ ├── ClipKit.h │ ├── Database/ │ │ ├── DatabaseManager.swift │ │ └── Model/ │ │ ├── Model.xcdatamodeld/ │ │ │ └── Model.xcdatamodel/ │ │ │ └── contents │ │ ├── PasteboardItem.swift │ │ └── PasteboardItemRepresentation.swift │ ├── Extensions/ │ │ ├── Bundle+AppGroups.swift │ │ ├── CFNotification+PasteboardListener.swift │ │ ├── Int+Bytes.swift │ │ ├── Result+Conveniences.swift │ │ ├── UIColor+Clip.swift │ │ ├── UIInputView+Click.swift │ │ ├── UIPasteboard+PasteboardItem.swift │ │ ├── UNNotification+Keys.swift │ │ └── UserDefaults+App.swift │ ├── Info.plist │ ├── Resources/ │ │ └── Colors.xcassets/ │ │ ├── Contents.json │ │ ├── LightPink.colorset/ │ │ │ └── Contents.json │ │ └── Pink.colorset/ │ │ └── Contents.json │ ├── SwiftUI/ │ │ ├── Blur.swift │ │ ├── ClippingCell.swift │ │ ├── Keyboard.swift │ │ ├── Preview.swift │ │ └── SwitchKeyboardButton.swift │ └── UTI.swift ├── ClipboardReader/ │ ├── Base.lproj/ │ │ └── MainInterface.storyboard │ ├── ClipboardReader.entitlements │ ├── Info.plist │ └── NotificationViewController.swift ├── README.md └── UNLICENSE