Last active
May 9, 2024 13:15
-
-
Save Rainyan/b8c6f817148a547e11eb17755f7aaf5b to your computer and use it in GitHub Desktop.
My AutoHotkey stuff
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
; Ripcord doesn't have mouse binds yet, so use F24 redirection as the mic mouse bind. | |
#HotIf WinExist("ahk_exe Ripcord.exe") | |
*$~xButton1::F24 ; don't block the mouse action, just replicate as a function key | |
#HotIf | |
; Disable left Windows key when inside CS to avoid mispresses | |
#HotIf WinActive("ahk_exe cs2.exe") | |
~LWin::vkFF ; only block plain key press, ie. still allow Win+key combos | |
#HotIf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment