Last active
April 5, 2020 06:59
-
-
Save krizajb/b0792b7fea6b89b697f469d8ad5d5ff8 to your computer and use it in GitHub Desktop.
Authotkey script for remapping windows (super) key to Shift+Alt+Space and windows key + h to minimize the current window, windows + move.
This file contains 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
; Remap windows key + h to minimize the current window | |
#h:: | |
WinMinimize A | |
return | |
; Disable the keyboard layout switcher | |
Ctrl & Shift:: | |
return | |
; Remap windows key to the launcher | |
<#LButton::return ; Do nothing if a left mouse button is clicked | |
LWin up:: | |
If (A_PriorKey = "LWin") ; LWin was pressed alone | |
Send, !{space} | |
return | |
; In this case its necessary to define a custom combination by using "&" or "<#" | |
; to avoid that LWin loses its original function as a modifier key: | |
<#d:: Send #d ; <# means LWin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment