-
Notifications
You must be signed in to change notification settings - Fork 1
/
Functions.ahk
181 lines (161 loc) · 3.25 KB
/
Functions.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
TypeDateTime()
{
FormatTime, current, , dd/MM/yyyy HH:mm:ss
SendInput %current%
}
TypeShortDate()
{
FormatTime, current, , ddMMyyyy
SendInput %current%
}
TypeFileDate()
{
FormatTime, current, , yyyy-MM-dd_
SendInput, %current%
}
TypeFileDateTime()
{
FormatTime, current, , yyyy-MM-ddTHH.mm.ss_
SendInput, %current%
}
TypeGitClone()
{
text := AppendWithClipboardContent("git clone ")
SendInput %text%
}
TypeMarkdownImageTag()
{
text := "{Raw}![](" . Clipboard . ")"
SendInput %text%
}
TypeClipboard()
{
text := Clipboard
SendInput %text%
}
TypeRandomNumber()
{
Random, num
SendInput %num%
}
DecreaseTransparencyOfWindowUnderMouse()
{
MouseGetPos,,, windowUnderMouse
WinGet, transparency, Transparent, ahk_id %windowUnderMouse%
transparency -= 10
transparency := transparency < 100 ? 100 : transparency
WinSet, Transparent, %transparency%, ahk_id %windowUnderMouse%
}
IncreaseTransparencyOfWindowUnderMouse()
{
MouseGetPos,,, windowUnderMouse
WinGet, transparency, Transparent, ahk_id %windowUnderMouse%
transparency += 10 ; weird
WinSet, Transparent, %transparency%, ahk_id %windowUnderMouse%
}
ResetTransparencyOfWindowUnderMouse()
{
MouseGetPos,,, windowUnderMouse
WinSet, Transparent, 255, ahk_id %windowUnderMouse%
return
}
HumanizeHotkey(label)
{
; replace all '+' to 'Shift +' first
label := RegExReplace(label, "\+(?!\s)", "Shift + ")
replacement := {}
replacement["~"] := ""
replacement["#"] := "Win + "
replacement["!"] := "Alt + "
replacement["^"] := "Ctrl + "
replacement[" &"] := ","
For search, replace in replacement
{
label := StrReplace(label, search, replace)
}
return label
}
AppendWithClipboardContent(text)
{
return text . Clipboard
}
AskIfTurnOffMonitor()
{
_prompt := new Prompt()
If (_prompt.PromptMatchSpace("Turn off monitor?", "turn off"))
{
TurnOffMonitor()
return true
}
return false
}
TurnOffMonitor()
{
DllCall("LockWorkStation")
; 0x112 = WM_SYSCOMMAND
; 0xF170 = SC_MONITORPOWER
SendMessage 0x112, 0xF170, 2, , Program Manager
}
ScrollLeft()
{
ControlGetFocus, control, A
Loop, 10 {
PostMessage, 0x114, 0, 0, %control%, A
; 0x114 = WM_HSCROLL
}
}
ScrollRight()
{
ControlGetFocus, control, A
Loop, 10 {
PostMessage, 0x114, 1, 0, %control%, A
; 0x114 = WM_HSCROLL
}
}
DisableAltMenuAccelerator(key, upOrDown)
{
; from Taran the Marco King https://github.com/TaranVH/2nd-keyboard/blob/master/Taran's%20Windows%20Mods/Alt_menu_acceleration_DISABLER.ahk
SendInput {%key% %upOrDown%}
SendInput {SC0E8 %upOrDown%}
KeyWait %key%
}
goBack()
{
If (WinActive("ahk_exe Station.exe"))
{
SendInput ^[
return
}
If (WinActive("ahk_exe devenv.exe"))
{
; go back to last cursor position
SendInput ^-
return
}
If (WinActive("ahk_exe Code.exe"))
{
SendInput {Browser_Back}
return
}
SendInput !{Left}
}
goForward()
{
If (WinActive("ahk_exe Station.exe"))
{
SendInput ^]
return
}
If (WinActive("ahk_exe devenv.exe"))
{
; go to the next cursor position
SendInput ^+-
return
}
If (WinActive("ahk_exe Code.exe"))
{
SendInput {Browser_Forward}
return
}
SendInput !{Right}
}