├── .gitattributes ├── .gitignore ├── LICENSE ├── Metal HUD Mobile Config.py ├── MyIcon.icns ├── README.md ├── requirements.txt ├── saved_commands.json ├── saved_paths.json ├── setup.py └── setup_xcode.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/LICENSE -------------------------------------------------------------------------------- /Metal HUD Mobile Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/Metal HUD Mobile Config.py -------------------------------------------------------------------------------- /MyIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/MyIcon.icns -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py2app 2 | tk 3 | setuptools 4 | -------------------------------------------------------------------------------- /saved_commands.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /saved_paths.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/setup.py -------------------------------------------------------------------------------- /setup_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmacright/Metal-HUD-Mobile-Config/HEAD/setup_xcode.sh --------------------------------------------------------------------------------