-
Notifications
You must be signed in to change notification settings - Fork 0
/
MacKeyboard.ahk
62 lines (46 loc) · 1.46 KB
/
MacKeyboard.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
;-----------------------------------------
; Mac keyboard to Windows Key Mappings
;=========================================
; --------------------------------------------------------------
; NOTES
; --------------------------------------------------------------
; ! = ALT
; ^ = CTRL
; + = SHIFT
; # = WIN
;
; Debug action snippet: MsgBox You pressed Control-A while Notepad is active.
; --------------------------------------------------------------
; media/function keys all mapped to the right option key
; --------------------------------------------------------------
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}
; F6 Key as Delete
F6::Del
; F4 as Start
F4::LWIN
; F1 as Cortana
F1::#C
; --------------------------------------------------------------
; OS X system shortcuts
; --------------------------------------------------------------
; navigate webpages
^Up::Home
^Down::End
; Close windows (cmd + q to Alt + F4)
^q::Send !{F4}
; App Switching + Expose (Task View)
^Tab::!Tab
F3::#Tab
; minimize windows
^m::WinMinimize,a
; --------------------------------------------------------------
; Custom mappings for special chars
; --------------------------------------------------------------
; --------------------------------------------------------------
; Application specific
; --------------------------------------------------------------