Created
November 21, 2017 07:41
-
-
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).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 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