├── .gitignore ├── Makefile ├── README.md ├── TokeTime.plist ├── Tweak.xm ├── control ├── layout └── Library │ └── Application Support │ └── TokeTime │ └── snoop.png ├── reset.sh ├── setup.sh └── theos /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/README.md -------------------------------------------------------------------------------- /TokeTime.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/TokeTime.plist -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/Tweak.xm -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/control -------------------------------------------------------------------------------- /layout/Library/Application Support/TokeTime/snoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/layout/Library/Application Support/TokeTime/snoop.png -------------------------------------------------------------------------------- /reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/reset.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codyd51/TokeTime/HEAD/setup.sh -------------------------------------------------------------------------------- /theos: -------------------------------------------------------------------------------- 1 | /opt/theos --------------------------------------------------------------------------------