Last active
April 9, 2020 00:44
-
-
Save mikeyjk/92ea93fb993b501a9674b4a18eb83660 to your computer and use it in GitHub Desktop.
Windows AHK
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
; i3/bswp+sxhkd/awesome-esque terminal opening: | |
;#Enter::Run, "C:\Program Files\PuTTY\putty.exe" -load "lamp" | |
#enter:: | |
Run "C:\Program Files (x86)\Mobatek\MobaXterm\MobaXterm.exe" | |
Return | |
; lcaps -> lctrl | |
$CapsLock::Ctrl | |
; set window to sit in front of all others | |
^SPACE:: Winset, Alwaysontop, , A | |
; disable ctrl + shift + w/q | |
; http://superuser.com/a/782979 | |
SetTitleMatchMode, Regex | |
#IfWinActive, ahk_class Chrome_WidgetWin_1 | |
^+w:: | |
;do nothing | |
return | |
^+q:: | |
;do nothing | |
return | |
#IfWinActive |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment