├── .gitignore ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── AppearanceNotifier │ └── main.swift ├── Tests └── AppearanceNotifierTests │ └── AppearanceNotifierTests.swift └── com.jesseclaven.appearancenotifier.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AppearanceNotifier/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/Sources/AppearanceNotifier/main.swift -------------------------------------------------------------------------------- /Tests/AppearanceNotifierTests/AppearanceNotifierTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/Tests/AppearanceNotifierTests/AppearanceNotifierTests.swift -------------------------------------------------------------------------------- /com.jesseclaven.appearancenotifier.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jesse-c/AppearanceNotifier/HEAD/com.jesseclaven.appearancenotifier.plist --------------------------------------------------------------------------------