├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── generate.sh ├── hacks ├── Makefile ├── bear-pro │ ├── Makefile │ ├── README.md │ ├── config │ ├── main.m │ └── run.sh ├── sketch-trial │ ├── Makefile │ ├── README.md │ ├── config │ ├── main.m │ └── run.sh ├── things-trial │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── main.m │ └── run.sh └── vpn-master-vip │ ├── Makefile │ ├── README.md │ ├── config │ ├── main.m │ └── run.sh └── patcher ├── patch.py └── patch.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/_config.yml -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/generate.sh -------------------------------------------------------------------------------- /hacks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/Makefile -------------------------------------------------------------------------------- /hacks/bear-pro/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /hacks/bear-pro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/bear-pro/README.md -------------------------------------------------------------------------------- /hacks/bear-pro/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/bear-pro/config -------------------------------------------------------------------------------- /hacks/bear-pro/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/bear-pro/main.m -------------------------------------------------------------------------------- /hacks/bear-pro/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/bear-pro/run.sh -------------------------------------------------------------------------------- /hacks/sketch-trial/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /hacks/sketch-trial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/sketch-trial/README.md -------------------------------------------------------------------------------- /hacks/sketch-trial/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/sketch-trial/config -------------------------------------------------------------------------------- /hacks/sketch-trial/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/sketch-trial/main.m -------------------------------------------------------------------------------- /hacks/sketch-trial/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/sketch-trial/run.sh -------------------------------------------------------------------------------- /hacks/things-trial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/things-trial/.gitignore -------------------------------------------------------------------------------- /hacks/things-trial/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /hacks/things-trial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/things-trial/README.md -------------------------------------------------------------------------------- /hacks/things-trial/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/things-trial/main.m -------------------------------------------------------------------------------- /hacks/things-trial/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/things-trial/run.sh -------------------------------------------------------------------------------- /hacks/vpn-master-vip/Makefile: -------------------------------------------------------------------------------- 1 | ../Makefile -------------------------------------------------------------------------------- /hacks/vpn-master-vip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/vpn-master-vip/README.md -------------------------------------------------------------------------------- /hacks/vpn-master-vip/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/vpn-master-vip/config -------------------------------------------------------------------------------- /hacks/vpn-master-vip/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/vpn-master-vip/main.m -------------------------------------------------------------------------------- /hacks/vpn-master-vip/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/hacks/vpn-master-vip/run.sh -------------------------------------------------------------------------------- /patcher/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/patcher/patch.py -------------------------------------------------------------------------------- /patcher/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gebeto/macos-hacks/HEAD/patcher/patch.sh --------------------------------------------------------------------------------