├── .gitignore ├── .gitmodules ├── Makefile ├── Tweak.x └── layout ├── DEBIAN └── control └── Library ├── MobileSubstrate └── DynamicLibraries │ └── Cask.plist └── PreferenceLoader └── Preferences └── Cask └── Cask.plist /.gitignore: -------------------------------------------------------------------------------- 1 | ._* 2 | *.deb 3 | .theos 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/Cask/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/Cask/HEAD/Makefile -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/Cask/HEAD/Tweak.x -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/Cask/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/Cask.plist: -------------------------------------------------------------------------------- 1 | Filter = {Bundles = ("com.apple.UIKit");}; 2 | -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/Cask/Cask.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpetrich/Cask/HEAD/layout/Library/PreferenceLoader/Preferences/Cask/Cask.plist --------------------------------------------------------------------------------