-
Notifications
You must be signed in to change notification settings - Fork 0
/
autohotkey.ahk
188 lines (159 loc) · 2.96 KB
/
autohotkey.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
182
183
184
185
186
187
188
SetTitleMatchMode, 2
#t::
IfWinExist Total Commander
{
WinActivate Total Commander
}
else
{
Run, C:\Programs\totalcmd\TOTALCMD64.EXE
}
Return
#j::
IfWinExist WhatsApp
{
WinActivate WhatsApp
}
else
{
Run, C:\Users\sebas\AppData\Local\WhatsApp\WhatsApp.exe
}
Return
#c::
IfWinExist Google Chrome
{
WinActivate Google Chrome
}
else
{
Run, C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
}
Return
#s::
IfWinExist Microsoft SQL Server Management Studio
{
WinActivate Microsoft SQL Server Management Studio
}
else
{
Run, C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\Ssms.exe
}
Return
#i::
IfWinExist Microsoft Visual Studio
{
WinActivate Microsoft Visual Studio
}
Return
#v::
IfWinExist Visual Studio Code
{
WinActivate Visual Studio Code
}
else
{
Run, C:\Users\sebas\AppData\Local\Programs\Microsoft VS Code\Code.exe
}
Return
#o::
IfWinExist Outlook
{
WinActivate Outlook
}
else
{
Run, C:\Program Files (x86)\Microsoft Office\root\Office16\OUTLOOK.EXE
}
Return
#y::
IfWinExist Spotify
{
WinActivate Spotify
}
else
{
Run, C:\Users\sebas\AppData\Roaming\Spotify\Spotify.exe
}
Return
#b::
IfWinExist - BareTail
{
WinActivate - BareTailPro
}
else
{
Run, C:\Programs\baretailpro.exe
}
Return
#q::
IfWinExist Shift
{
WinActivate Shift
}
else
{
Run, C:\Users\sebas\AppData\Local\Shift\Shift.exe
}
Return
#+Up::
WinGetActiveTitle, Title
WinRestore, %Title%
SysGet, X1, 76
SysGet, Y1, 77
SysGet, Width, 78
SysGet, Height, 79
WinMove, %Title%,, X1, Y1, Width, Height - 40
SysGet, X1, 76
SysGet, Y1, 77
SysGet, Width, 78
SysGet, Height, 79
WinMove, %Title%,, X1, Y1, Width, Height - 40
Return
+`::
WinGetActiveTitle, Title
WinRestore, %Title%
SysGet, X1, 76
SysGet, Y1, 77
SysGet, Width, 78
SysGet, Height, 79
WinMove, %Title%,, -10, 520, 1620, 887
SysGet, X1, 76
SysGet, Y1, 77
SysGet, Width, 78
SysGet, Height, 79
WinMove, %Title%,, -10, 520, 1620, 887
Return
!`::
Send #+{Right}
Return
#IfWinActive, Microsoft SQL Server Management Studio
;+`::
`::
Send {Home}+{End}^e
Return
:*:/vn::
StringReplace, clipboard, clipboard, `r`n, `,` , All
Send ^v
Return
:*:/vs::
StringReplace, TempValue, clipboard, `r`n, `'`,` `', All
TempValue2 = `'%TempValue%`'
clipboard = %TempValue2%
Send ^v
Return
;#IfWinActive, Microsoft SQL Server Management Studio
;LButton::
; Click
; Send,{Shift down}{Left 8}{Shift up}
; Send, ^c
;Return
WheelLeft::
Send #{Left}
Return
WheelRight::
Send #{Right}
Return
:*:/dt::
FormatTime, CurrentDateTime,,yyyy-MM-dd HH:mm
Send %CurrentDateTime%
Return