├── .gitignore ├── Makefile ├── PRSnapshotter.h ├── PRSnapshotter.mm ├── PrettyRespring.plist ├── Tweak.xm ├── control ├── prettyrespring.h └── prettyrespringbackboardd ├── Makefile ├── PRImageContainer.h ├── PRImageContainer.mm ├── Tweak.xm └── prettyrespringbackboardd.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/Makefile -------------------------------------------------------------------------------- /PRSnapshotter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/PRSnapshotter.h -------------------------------------------------------------------------------- /PRSnapshotter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/PRSnapshotter.mm -------------------------------------------------------------------------------- /PrettyRespring.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/PrettyRespring.plist -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/control -------------------------------------------------------------------------------- /prettyrespring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/prettyrespring.h -------------------------------------------------------------------------------- /prettyrespringbackboardd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/prettyrespringbackboardd/Makefile -------------------------------------------------------------------------------- /prettyrespringbackboardd/PRImageContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/prettyrespringbackboardd/PRImageContainer.h -------------------------------------------------------------------------------- /prettyrespringbackboardd/PRImageContainer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/prettyrespringbackboardd/PRImageContainer.mm -------------------------------------------------------------------------------- /prettyrespringbackboardd/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/prettyrespringbackboardd/Tweak.xm -------------------------------------------------------------------------------- /prettyrespringbackboardd/prettyrespringbackboardd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EthanArbuckle/PrettyRespring/HEAD/prettyrespringbackboardd/prettyrespringbackboardd.plist --------------------------------------------------------------------------------