├── .gitignore ├── .swift-version ├── CONTRIBUTING.md ├── Example ├── ThemesDemo │ ├── Podfile │ ├── Podfile.lock │ ├── ThemesDemo.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ThemesDemo.xcscheme │ ├── ThemesDemo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── ThemesDemo │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── day.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NZ9RnF.jpg │ │ │ ├── night.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── rHIjD7E.jpg │ │ │ ├── starwar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── RsyHRBx.jpg │ │ │ └── unicorn.imageset │ │ │ │ ├── 6UGe1vL.png │ │ │ │ └── Contents.json │ │ ├── Main.storyboard │ │ ├── Starjedi.ttf │ │ └── Unicorn.ttf │ │ └── Sources │ │ ├── AppDelegate.swift │ │ ├── Cell.swift │ │ ├── Item.swift │ │ ├── ItemFactory.swift │ │ └── ViewController.swift └── YahooWather │ ├── Podfile │ ├── Podfile.lock │ ├── YahooWather.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── YahooWather.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── YahooWather │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── day.imageset │ │ ├── Contents.json │ │ └── oslo-c.jpg │ └── night.imageset │ │ ├── Contents.json │ │ └── dsc_4467_c.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── LICENSE.md ├── Playground-Mac.playground ├── Contents.swift ├── contents.xcplayground └── timeline.xctimeline ├── Playground-iOS.playground ├── Contents.swift ├── contents.xcplayground └── timeline.xctimeline ├── README.md ├── Screenshots ├── Banner.png ├── demo.gif └── weather.gif ├── Sources ├── Handler.swift ├── Notification.swift ├── Theme.swift ├── ThemeManager.swift └── ThemeUser.swift ├── Themes.podspec ├── Themes.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Themes-Mac.xcscheme │ └── Themes-iOS.xcscheme ├── Themes ├── Info-Mac.plist └── Info-iOS.plist ├── ThemesTests ├── Info-Mac.plist ├── Info-iOS.plist └── ThemeTests.swift └── bin ├── bootstrap └── bootstrap-if-needed /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/ThemesDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/Podfile -------------------------------------------------------------------------------- /Example/ThemesDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/Podfile.lock -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo.xcodeproj/xcshareddata/xcschemes/ThemesDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo.xcodeproj/xcshareddata/xcschemes/ThemesDemo.xcscheme -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Info.plist -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/day.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/day.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/day.imageset/NZ9RnF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/day.imageset/NZ9RnF.jpg -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/night.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/night.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/night.imageset/rHIjD7E.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/night.imageset/rHIjD7E.jpg -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/starwar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/starwar.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/starwar.imageset/RsyHRBx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/starwar.imageset/RsyHRBx.jpg -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/unicorn.imageset/6UGe1vL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/unicorn.imageset/6UGe1vL.png -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/unicorn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Assets.xcassets/unicorn.imageset/Contents.json -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Main.storyboard -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Starjedi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Starjedi.ttf -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Resources/Unicorn.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Resources/Unicorn.ttf -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Sources/Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Sources/Cell.swift -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Sources/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Sources/Item.swift -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Sources/ItemFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Sources/ItemFactory.swift -------------------------------------------------------------------------------- /Example/ThemesDemo/ThemesDemo/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/ThemesDemo/ThemesDemo/Sources/ViewController.swift -------------------------------------------------------------------------------- /Example/YahooWather/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/Podfile -------------------------------------------------------------------------------- /Example/YahooWather/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/Podfile.lock -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/AppDelegate.swift -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Assets.xcassets/day.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Assets.xcassets/day.imageset/Contents.json -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Assets.xcassets/day.imageset/oslo-c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Assets.xcassets/day.imageset/oslo-c.jpg -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Assets.xcassets/night.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Assets.xcassets/night.imageset/Contents.json -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Assets.xcassets/night.imageset/dsc_4467_c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Assets.xcassets/night.imageset/dsc_4467_c.jpg -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/Info.plist -------------------------------------------------------------------------------- /Example/YahooWather/YahooWather/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Example/YahooWather/YahooWather/ViewController.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Playground-Mac.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Playground-Mac.playground/Contents.swift -------------------------------------------------------------------------------- /Playground-Mac.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Playground-Mac.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playground-Mac.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Playground-Mac.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Playground-iOS.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Playground-iOS.playground/Contents.swift -------------------------------------------------------------------------------- /Playground-iOS.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Playground-iOS.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playground-iOS.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Playground-iOS.playground/timeline.xctimeline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Screenshots/Banner.png -------------------------------------------------------------------------------- /Screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Screenshots/demo.gif -------------------------------------------------------------------------------- /Screenshots/weather.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Screenshots/weather.gif -------------------------------------------------------------------------------- /Sources/Handler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Sources/Handler.swift -------------------------------------------------------------------------------- /Sources/Notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Sources/Notification.swift -------------------------------------------------------------------------------- /Sources/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Sources/Theme.swift -------------------------------------------------------------------------------- /Sources/ThemeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Sources/ThemeManager.swift -------------------------------------------------------------------------------- /Sources/ThemeUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Sources/ThemeUser.swift -------------------------------------------------------------------------------- /Themes.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes.podspec -------------------------------------------------------------------------------- /Themes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Themes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Themes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Themes.xcodeproj/xcshareddata/xcschemes/Themes-Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes.xcodeproj/xcshareddata/xcschemes/Themes-Mac.xcscheme -------------------------------------------------------------------------------- /Themes.xcodeproj/xcshareddata/xcschemes/Themes-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes.xcodeproj/xcshareddata/xcschemes/Themes-iOS.xcscheme -------------------------------------------------------------------------------- /Themes/Info-Mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes/Info-Mac.plist -------------------------------------------------------------------------------- /Themes/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/Themes/Info-iOS.plist -------------------------------------------------------------------------------- /ThemesTests/Info-Mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/ThemesTests/Info-Mac.plist -------------------------------------------------------------------------------- /ThemesTests/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/ThemesTests/Info-iOS.plist -------------------------------------------------------------------------------- /ThemesTests/ThemeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/ThemesTests/ThemeTests.swift -------------------------------------------------------------------------------- /bin/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/bin/bootstrap -------------------------------------------------------------------------------- /bin/bootstrap-if-needed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/EasyTheme/HEAD/bin/bootstrap-if-needed --------------------------------------------------------------------------------