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