├── .gitignore ├── Common.h ├── Makefile ├── RecordPause.plist ├── Tweak.x ├── control └── layout └── Library └── Application Support └── RecordPause.bundle ├── Info.plist ├── pause.fill@2x.png └── pause.fill@3x.png /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .DS_Store 3 | packages -------------------------------------------------------------------------------- /Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/Common.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/Makefile -------------------------------------------------------------------------------- /RecordPause.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/RecordPause.plist -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/Tweak.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/RecordPause.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/layout/Library/Application Support/RecordPause.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/Application Support/RecordPause.bundle/pause.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/layout/Library/Application Support/RecordPause.bundle/pause.fill@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/RecordPause.bundle/pause.fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/RecordPause/HEAD/layout/Library/Application Support/RecordPause.bundle/pause.fill@3x.png --------------------------------------------------------------------------------