Last active
June 13, 2025 20:34
-
-
Save stpettersens/bf9f9f73ca32b6ae2e4038b3c76cbffa to your computer and use it in GitHub Desktop.
Key binding script for AutoHotKey I use in conjunction with GlazeWM but will work independently of it, should I close GlazeWM.
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
^+a:: { | |
MsgBox "Key bindings are active." | |
Return | |
} | |
!Enter:: { | |
Run "wt.cmd" | |
Return | |
} | |
!b:: { | |
Run "brave.cmd" | |
Return | |
} | |
^t:: { | |
Run "telegram.cmd" | |
Return | |
} | |
!+q:: { | |
Run "sumatrapdf.cmd" | |
Return | |
} | |
!f:: { | |
Run "explorer.exe" | |
Return | |
} | |
^+h:: { | |
Run "handbrake.cmd" | |
Return | |
} | |
!z:: { | |
Run "filezilla.cmd" | |
Return | |
} | |
!n:: { | |
Run "notepadplusplus.cmd" | |
Return | |
} | |
!y:: { | |
Run "keepass.cmd" | |
Return | |
} | |
^u:: { | |
Run "uhkagent.cmd" | |
Return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment