Skip to content

Instantly share code, notes, and snippets.

@mschmitt
Created March 13, 2019 12:22
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 mschmitt/19005912af197e8dc6748accf75c7f6f to your computer and use it in GitHub Desktop.
Save mschmitt/19005912af197e8dc6748accf75c7f6f to your computer and use it in GitHub Desktop.
Alienware m15 Macro Key Mapping
; Alienware-m15.ahk
;
; Map Alienware m15 Macro keys 1-4 to arbitrary keypresses, without
; the use of Alienware Control Center.
;
; Macro Key 1
SC112::
SendInput {F13}
return
; Macro Key 2
SC113::
SendInput {F14}
return
; Macro Key 3
SC114::
MsgBox, Macro Key 3 (%A_ThisHotkey%) was pressed.
return
; Macro Key 4
SC115::
SendInput {Media_Play_Pause}
return
#SingleInstance force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment