Xcode have ability to run any script with hotkey.
Here is example how to assign hotkey ⌘+⌥+⌃+⇧+T
to open Terminal app in current project folder.
#!/bin/bash
# Project Name: $XcodeProject
# Project Dir: $XcodeProjectPath
# Workspace Dir: $XcodeWorkspacePath
open -a Terminal "$(dirname $XcodeProjectPath)"
Make script executable: open Terminal at script folder and run chmod +x your_script_name.sh
Open Xcode Preferences at Behaviors tab
Add new custom behavior by tapping +
in the bottom left corner
Choose script, which you create previously by clicking at the Choose Script...
twice.
If your script is grayed, be sure, that you run chmod +x
on your script file
Now you can open terminal in project folder with one hotkey.
This is only one example of using Xcode behaviors, but you can create any script and launch any app with it.
Bash script author: http://mattorb.com/xcode-behaviors-for-fun-and-profit/