├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Tweak.x ├── YouGroupSettings.plist ├── control └── layout └── Library └── Application Support └── YouGroupSettings.bundle ├── Info.plist ├── en.lproj └── Localizable.strings ├── pl.lproj └── Localizable.strings └── th.lproj └── Localizable.strings /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/Tweak.x -------------------------------------------------------------------------------- /YouGroupSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/YouGroupSettings.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/YouGroupSettings.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouGroupSettings/HEAD/layout/Library/Application Support/YouGroupSettings.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/Application Support/YouGroupSettings.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "TWEAKS" = "Tweaks"; 2 | -------------------------------------------------------------------------------- /layout/Library/Application Support/YouGroupSettings.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "TWEAKS" = "Dodatki"; 2 | -------------------------------------------------------------------------------- /layout/Library/Application Support/YouGroupSettings.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "TWEAKS" = "ทวีค"; 2 | --------------------------------------------------------------------------------