Skip to content

Instantly share code, notes, and snippets.

@bikrone
Created November 1, 2019 23:39
Show Gist options
  • Save bikrone/ce207bcd4c91180918be2979c1f208c4 to your computer and use it in GitHub Desktop.
Save bikrone/ce207bcd4c91180918be2979c1f208c4 to your computer and use it in GitHub Desktop.
Magic keyboard AutoHotkey configuration
LWin::LCtrl
; Remap cmd+Tab to Alt+Tab
; Media keys
RWin & F7::SendInput {Media_Prev}
RWin & F8::SendInput {Media_Play_Pause}
RWin & F9::SendInput {Media_Next}
RWin & F10::SendInput {Volume_Mute}
RWin & F11::SendInput {Volume_Down}
RWin & F12::SendInput {Volume_Up}
F16::Run calc
^Left::Send {Home}
^+Left::
Send, {Shift down}{Home}{Shift up}
return
^Right::Send {End}
^+Right::
Send, {Shift down}{End}{Shift up}
return
^Up::Send {PgUp}
^Down::Send {PgDn}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment