Skip to content

Instantly share code, notes, and snippets.

@kil9
Created February 18, 2023 04:51
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 kil9/6a56df482756a0ee47aafb56ede02816 to your computer and use it in GitHub Desktop.
Save kil9/6a56df482756a0ee47aafb56ede02816 to your computer and use it in GitHub Desktop.
; AutoHotKey script by kil9 <krieiter@gmail.com>
#SingleInstance
A_MaxHotkeysPerInterval := 1000
; for normal keyboard
CapsLock::Ctrl
+Capslock::CapsLock
; Media Keys
!+w::Volume_Up
!+x::Volume_Down
!+a::Media_Prev
!+s::Media_Play_Pause
!+d::Media_Next
!+z::Volume_Mute
!+q::Media_Stop
; HHKB left-handed
!^w::WinClose("A")
!^q::WinClose("A")
; scroll lock for task manager
scrollLock::Run("taskmgr.exe")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment