Created
January 9, 2019 10:52
-
-
Save danmindru/47c47e86c2830e41c0e4969aee1b7d06 to your computer and use it in GitHub Desktop.
AutoHotKey Apple Magic keyboard on Windows
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
| If not A_IsAdmin | |
| { | |
| Run *RunAs "%A_ScriptFullPath%" | |
| ExitApp | |
| } | |
| LWin::Control | |
| RWin::Control | |
| Control::Alt | |
| F7::SendInput {Media_Prev} | |
| F8::SendInput {Media_Play_Pause} | |
| F9::SendInput {Media_Next} | |
| F10::SendInput {Volume_Mute} | |
| F11::SendInput {Volume_Down} | |
| F12::SendInput {Volume_Up} | |
| ; Eject Key | |
| ; F13-15, standard windows mapping | |
| F13::SendInput {PrintScreen} | |
| F14::SendInput {ScrollLock} | |
| F15::SendInput {Pause} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment