I've seen a few questions dealing with this issue but nothing recently. I'm not sure if El Capitan (10.11) is breaking something, and I'm an AppleScript (and Automator) newbie.
I just want to have the basic functionality where a keyboard shortcut opens a new terminal window in the space I'm in. After doing the following things, absolutely nothing happens when I trigger the keyboard shortcut
1. Create an Automator Service
- Open Automator and choose
Service
for my document type. - Set
Service recieves selected
tono input
- Drag a
Run AppleScript
action into my workflow.
on run {input, parameters} tell application "Terminal" do script "" activate end tell return input end run
(At this point, running the workflow from automator by pressing Play
opens a new terminal window correctly).
- Save the service as
Launch New Terminal Window
2. Assign a Keyboard Shortcut
- Open
System Preferences
->Keyboard
->Shortcuts
->Services
- Assign
Shift Command T
toLaunch New Terminal Window
When I try my new command, nothing happens.
Note, I tried to delete the service and retrace my steps. When I recreated a new service with the same name, the keyboard shortcut was remembered by the system. Does anyone know which .plist
/where these keyboard shortcuts are saved?
If anyone can help me out, that would be great. A 30 second project has turned into 30 minutes of hair pulling.