├── .DS_Store ├── .gitignore ├── CallNow ├── Listener.xm ├── Makefile ├── callnow.plist ├── callnow │ ├── CallNow.mm │ ├── Makefile │ ├── Resources │ │ ├── CallNow.plist │ │ └── Info.plist │ ├── entry.plist │ └── theos ├── control ├── layout │ └── Library │ │ └── Activator │ │ └── Listeners │ │ └── com.phillipt.callnow │ │ └── Info.plist ├── libactivator.h └── theos ├── NameChanger ├── Makefile ├── Tweak.xm ├── control ├── nameChanger.plist └── theos ├── PassChanger ├── Makefile ├── Tweak.xm ├── control ├── passChanger.plist └── theos ├── README.md ├── RespringNotifier ├── Makefile ├── RespringNotifier.plist ├── Tweak.xm ├── control ├── respringnotifier │ ├── Makefile │ ├── Resources │ │ ├── Info.plist │ │ └── RespringNotifier.plist │ ├── RespringNotifier.mm │ ├── entry.plist │ └── theos └── theos ├── gitignore └── unlockchanger ├── Makefile ├── Tweak.xm ├── UnlockChanger.plist ├── control ├── theos └── unlockchanger ├── Makefile ├── Resources ├── Info.plist └── UnlockChanger.plist ├── UnlockChanger.mm ├── entry.plist └── theos /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /CallNow/Listener.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/Listener.xm -------------------------------------------------------------------------------- /CallNow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/Makefile -------------------------------------------------------------------------------- /CallNow/callnow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/callnow.plist -------------------------------------------------------------------------------- /CallNow/callnow/CallNow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/callnow/CallNow.mm -------------------------------------------------------------------------------- /CallNow/callnow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/callnow/Makefile -------------------------------------------------------------------------------- /CallNow/callnow/Resources/CallNow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/callnow/Resources/CallNow.plist -------------------------------------------------------------------------------- /CallNow/callnow/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/callnow/Resources/Info.plist -------------------------------------------------------------------------------- /CallNow/callnow/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/callnow/entry.plist -------------------------------------------------------------------------------- /CallNow/callnow/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /CallNow/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/control -------------------------------------------------------------------------------- /CallNow/layout/Library/Activator/Listeners/com.phillipt.callnow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/layout/Library/Activator/Listeners/com.phillipt.callnow/Info.plist -------------------------------------------------------------------------------- /CallNow/libactivator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/CallNow/libactivator.h -------------------------------------------------------------------------------- /CallNow/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /NameChanger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/NameChanger/Makefile -------------------------------------------------------------------------------- /NameChanger/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/NameChanger/Tweak.xm -------------------------------------------------------------------------------- /NameChanger/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/NameChanger/control -------------------------------------------------------------------------------- /NameChanger/nameChanger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/NameChanger/nameChanger.plist -------------------------------------------------------------------------------- /NameChanger/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /PassChanger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/PassChanger/Makefile -------------------------------------------------------------------------------- /PassChanger/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/PassChanger/Tweak.xm -------------------------------------------------------------------------------- /PassChanger/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/PassChanger/control -------------------------------------------------------------------------------- /PassChanger/passChanger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/PassChanger/passChanger.plist -------------------------------------------------------------------------------- /PassChanger/theos: -------------------------------------------------------------------------------- 1 | /Users/qbx2/theos -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/README.md -------------------------------------------------------------------------------- /RespringNotifier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/Makefile -------------------------------------------------------------------------------- /RespringNotifier/RespringNotifier.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/RespringNotifier.plist -------------------------------------------------------------------------------- /RespringNotifier/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/Tweak.xm -------------------------------------------------------------------------------- /RespringNotifier/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/control -------------------------------------------------------------------------------- /RespringNotifier/respringnotifier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/respringnotifier/Makefile -------------------------------------------------------------------------------- /RespringNotifier/respringnotifier/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/respringnotifier/Resources/Info.plist -------------------------------------------------------------------------------- /RespringNotifier/respringnotifier/Resources/RespringNotifier.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/respringnotifier/Resources/RespringNotifier.plist -------------------------------------------------------------------------------- /RespringNotifier/respringnotifier/RespringNotifier.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/respringnotifier/RespringNotifier.mm -------------------------------------------------------------------------------- /RespringNotifier/respringnotifier/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/RespringNotifier/respringnotifier/entry.plist -------------------------------------------------------------------------------- /RespringNotifier/respringnotifier/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /RespringNotifier/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | theos 3 | -------------------------------------------------------------------------------- /unlockchanger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/Makefile -------------------------------------------------------------------------------- /unlockchanger/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/Tweak.xm -------------------------------------------------------------------------------- /unlockchanger/UnlockChanger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/UnlockChanger.plist -------------------------------------------------------------------------------- /unlockchanger/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/control -------------------------------------------------------------------------------- /unlockchanger/theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /unlockchanger/unlockchanger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/unlockchanger/Makefile -------------------------------------------------------------------------------- /unlockchanger/unlockchanger/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/unlockchanger/Resources/Info.plist -------------------------------------------------------------------------------- /unlockchanger/unlockchanger/Resources/UnlockChanger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/unlockchanger/Resources/UnlockChanger.plist -------------------------------------------------------------------------------- /unlockchanger/unlockchanger/UnlockChanger.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/unlockchanger/UnlockChanger.mm -------------------------------------------------------------------------------- /unlockchanger/unlockchanger/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/Theos-Examples/HEAD/unlockchanger/unlockchanger/entry.plist -------------------------------------------------------------------------------- /unlockchanger/unlockchanger/theos: -------------------------------------------------------------------------------- 1 | /opt/theos --------------------------------------------------------------------------------