Configure o teclado OS X para funcionar como o OS X dentro do Windows

0

Não estou frequentemente no Windows, mas quando estou, gostaria que o teclado emulasse as funções básicas do OS X. Por exemplo:

  1. Combinações de teclas Option definem caracteres especiais
  2. Opção + teclas de seta fazem navegação de texto (salta entre palavras / linhas / parágrafos)
  3. Idealmente, use a combinação de teclas Super para funções básicas (copiar, colar, fechar janela, minimizar / ocultar, etc.)

Existe uma configuração como essa tratada no Windows? Ou um plug-in que executa a mesma função?

    
por Wolf 31.12.2016 / 00:18

1 resposta

0

Suas opções serão bastante limitadas, e sua melhor opção será utilizar AutoHotkey :

AutoHotkey (AHK) is a free, open-source macro-creation and automation software for Windows that allows users to automate repetitive tasks. It is driven by a scripting language that was initially aimed at providing keyboard shortcuts, otherwise known as hotkeys, that over time evolved into a full-fledged scripting language. And if you're really interested, here's a great video about it here.

You can use AutoHotkey to:

  • Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or a macro recorder.

  • Remap keys and buttons on your keyboard, joystick, and mouse.

  • Create hotkeys for keyboard, joystick, and mouse. Essentially any key, button or combination can become a hotkey.

  • Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".

  • Retrieve and change the clipboard's contents.

  • Convert any AHK script into an executable file that can be run on computers where AutoHotkey is not installed.

  • Don't know where to start or how to fix your script? Join the friendly AutoHotkey community and ask for help

( Fonte )

    
por 31.12.2016 / 00:37