-
Notifications
You must be signed in to change notification settings - Fork 0
/
a.ahk
44 lines (41 loc) · 940 Bytes
/
a.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
; Switch Capslock and Escape
$Capslock::Esc
$Esc::Capslock
; Run programs
<#c::Run "C:\Users\Jkastelic\Documents\prog\Free42Decimal.exe"
<#z::Run "C:\Program Files\Google\Chrome\Application\chrome.exe"
<#m::Run "C:\Users\Jkastelic\Documents\prog\foobar2000\foobar2000.exe"
; Special characters
<#^!Right::Send '→'
<#^!Left::Send '←'
<#^!Up::Send '↑'
<#^!Down::Send '↓'
<#^!.::Send '≥'
<#^!,::Send '≤'
<#^!+,::Send '⪅'
<#^!-::Send '−' ; minus symbol
<#^!m::Send '—' ; em dash
<#^!n::Send '–' ; en dash
<#^!d::Send '°'
<#^!+=::Send '±'
<#^!=::Send '≈'
<#^!x::Send '×'
<#^!+x::Send '⋅'
<#^!s::Send '√'
; Greek letters
^!b::Send 'β'
^!+d::Send 'Δ'
^!d::Send 'δ'
^!+p::Send 'Π'
^!p::Send 'π'
^!+f::Send 'Φ'
^!f::Send 'φ'
^!+o::Send 'Ω'
^!o::Send 'ω'
^!m::Send 'μ'
^!+s::Send 'Σ'
^!s::Send 'σ'
^!e::Send 'ε'
^!t::Send 'θ'
^!h::Send 'η'
^!r::Send 'ρ'