├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── Tweak.x ├── YTDarker.plist └── control /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YTDarker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .DS_Store 3 | packages -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YTDarker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YTDarker/HEAD/Makefile -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YTDarker/HEAD/Tweak.x -------------------------------------------------------------------------------- /YTDarker.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YTDarker/HEAD/YTDarker.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YTDarker/HEAD/control --------------------------------------------------------------------------------