Abra um novo terminal usando um atalho de teclado

1

Eu quero ser capaz de abrir uma nova janela de terminal no OSX Mavericks usando um atalho de teclado. A janela do terminal deve ser:

  • Novo (não quero que um existente seja focado)
  • Aberta na área de trabalho em que estou no momento
  • Em foco

Alguma ideia de como fazer isso?

    
por zoran119 02.03.2014 / 23:48

2 respostas

1

Você pode atribuir um atalho a um script assim:

tell application "Terminal"
    do script ""
    activate
end tell

do script "" abre uma nova janela e activate faz o Terminal ficar na frente.

Se você comprou o Powerpack para Alfred , pode atribuir um atalho a um script conectando um gatilho de tecla de acesso a uma ação de script de execução :

    
por 03.03.2014 / 22:54
1

Eu não estou na frente do meu Mac agora, mas acredito que você pode acionar uma determinada ação dentro de qualquer aplicativo usando as seguintes etapas, no site de suporte da Apple:

Choose Apple menu > System Preferences, and then click Keyboard.

Click Keyboard Shortcuts, and then click the Add (+) button.

Choose an application from the Application pop-up menu. If you want to set the same key combination for a menu command that appears in many applications, choose All Applications.

If the application you want to select does not appear in the list, choose Other and locate the application using the Open dialog. Some applications may not allow you to set keyboard shortcuts.

Type the menu command for which you want to set a keyboard shortcut in the Menu Title field.

You must type the command exactly as it appears in the application menu, including ellipses and any other punctuation. An ellipsis is a special character that looks like three periods. To type an ellipsis, press Option-semicolon, or use the Character Viewer. It may be difficult to know whether the command is written in the menu with a real ellipsis or with three periods, so if one does not work, try the other.

    
por 04.03.2014 / 03:37