Skip to content

Instantly share code, notes, and snippets.

@mikeyjk
Last active April 9, 2020 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeyjk/92ea93fb993b501a9674b4a18eb83660 to your computer and use it in GitHub Desktop.
Save mikeyjk/92ea93fb993b501a9674b4a18eb83660 to your computer and use it in GitHub Desktop.
Windows AHK
; 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