├── .gitignore ├── Images ├── Icons │ ├── AppIcon.svg │ └── MenuBarIcon.svg └── Readme │ ├── Installation │ ├── Drag&Drop.png │ ├── Security.png │ └── Warning.png │ └── Screenshots │ ├── MenuAppScreenshot.png │ └── NotificationsScreenshot.png ├── LICENSE ├── README.md ├── SaveMyEyes.xcodeproj └── project.pbxproj ├── SaveMyEyes ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── SaveMyEyesIcon.png │ ├── Contents.json │ └── StatusBarButtonImage.imageset │ │ ├── Contents.json │ │ └── SaveMyEyesMenuBarIcon.png ├── Info.plist ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SaveMyEyes.entitlements ├── Source │ ├── Common │ │ ├── AppNotification.swift │ │ ├── Constants.swift │ │ ├── Extentions.swift │ │ ├── Observable.swift │ │ └── Preferences.swift │ ├── Main │ │ ├── MainView.swift │ │ └── MainViewModel.swift │ ├── Startup │ │ ├── AppDelegate.swift │ │ └── Main.storyboard │ └── uk.lproj │ │ └── Main.strings ├── en.lproj │ └── Localizable.strings ├── ru-RU.lproj │ └── Localizable.strings └── uk.lproj │ └── Localizable.strings └── SaveMyEyesLauncher ├── AppDelegate.swift ├── Info.plist ├── SaveMyEyesLauncher.entitlements └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Icons/AppIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Icons/AppIcon.svg -------------------------------------------------------------------------------- /Images/Icons/MenuBarIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Icons/MenuBarIcon.svg -------------------------------------------------------------------------------- /Images/Readme/Installation/Drag&Drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Readme/Installation/Drag&Drop.png -------------------------------------------------------------------------------- /Images/Readme/Installation/Security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Readme/Installation/Security.png -------------------------------------------------------------------------------- /Images/Readme/Installation/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Readme/Installation/Warning.png -------------------------------------------------------------------------------- /Images/Readme/Screenshots/MenuAppScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Readme/Screenshots/MenuAppScreenshot.png -------------------------------------------------------------------------------- /Images/Readme/Screenshots/NotificationsScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/Images/Readme/Screenshots/NotificationsScreenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/README.md -------------------------------------------------------------------------------- /SaveMyEyes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SaveMyEyes/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SaveMyEyes/Assets.xcassets/AppIcon.appiconset/SaveMyEyesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Assets.xcassets/AppIcon.appiconset/SaveMyEyesIcon.png -------------------------------------------------------------------------------- /SaveMyEyes/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SaveMyEyes/Assets.xcassets/StatusBarButtonImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Assets.xcassets/StatusBarButtonImage.imageset/Contents.json -------------------------------------------------------------------------------- /SaveMyEyes/Assets.xcassets/StatusBarButtonImage.imageset/SaveMyEyesMenuBarIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Assets.xcassets/StatusBarButtonImage.imageset/SaveMyEyesMenuBarIcon.png -------------------------------------------------------------------------------- /SaveMyEyes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Info.plist -------------------------------------------------------------------------------- /SaveMyEyes/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SaveMyEyes/SaveMyEyes.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/SaveMyEyes.entitlements -------------------------------------------------------------------------------- /SaveMyEyes/Source/Common/AppNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Common/AppNotification.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Common/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Common/Constants.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Common/Extentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Common/Extentions.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Common/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Common/Observable.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Common/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Common/Preferences.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Main/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Main/MainView.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Main/MainViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Main/MainViewModel.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Startup/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Startup/AppDelegate.swift -------------------------------------------------------------------------------- /SaveMyEyes/Source/Startup/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/Startup/Main.storyboard -------------------------------------------------------------------------------- /SaveMyEyes/Source/uk.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/Source/uk.lproj/Main.strings -------------------------------------------------------------------------------- /SaveMyEyes/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /SaveMyEyes/ru-RU.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/ru-RU.lproj/Localizable.strings -------------------------------------------------------------------------------- /SaveMyEyes/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyes/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /SaveMyEyesLauncher/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyesLauncher/AppDelegate.swift -------------------------------------------------------------------------------- /SaveMyEyesLauncher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyesLauncher/Info.plist -------------------------------------------------------------------------------- /SaveMyEyesLauncher/SaveMyEyesLauncher.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyesLauncher/SaveMyEyesLauncher.entitlements -------------------------------------------------------------------------------- /SaveMyEyesLauncher/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masich/SaveMyEyes/HEAD/SaveMyEyesLauncher/main.swift --------------------------------------------------------------------------------