Skip to content

Instantly share code, notes, and snippets.

@Tehnix
Created November 21, 2017 07:41
Show Gist options
  • Save Tehnix/284e1fa94bec9be15641806aab7dd8a4 to your computer and use it in GitHub Desktop.
Save Tehnix/284e1fa94bec9be15641806aab7dd8a4 to your computer and use it in GitHub Desktop.
Disable the Windows Key on Windows using Autohotkey (quite annoying in bootcamp coming from macOS). Save this file on your desktop and double click it (or in your startup folder for it to run automatically).
; Disable Alt+Tab
; !Tab::Return
; Disable Windows Key + Tab
#Tab::Return
; Disable Left Windows Key
LWin::Return
; Disable Right Windows Key
RWin::Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment