I defined a shortcut for opening a Terminal, but it isn't working.
Any ideas?
This is because the shortcut you created is specific to the Application.
When you create the shortcut, you need to enter the "exact name of the menu command" within the Application specified in the dropdown above.
Typing "Terminal" won't work.
3 Options to quickly Launch Terminal
Open Your Applications Folder and simply drag the Terminal icon to your dock. Click on it whenever you want.
One of my favorite ways to launch programs is to simply type it in Spotlight. Press Command Space to invoke Spotlight and just start typing
If you have to have a keyboard shortcut to run Terminal, consider using Karabiner. It's free software that allows you create custom shortcuts for virtually any task. Best of all, it's free.
Create a Service Automator workflow. Set it as no input and available from any application. Place there "Open Application" module and choose Terminal.app. Save it with the name like: "OpenTerminal". Then in keyboard shortcuts preferences, select Services and look for "OpenTerminal" service -> assign Your shortcut there.
I tried the script below: on run {input, parameters} tell application "Terminal" activate reopen end tell return input end run
– Pinchus G. Jul 20 '16 at 14:25