Autohotkey startup producitivty script
A simple but extremly effective script I can't live without anymore. It saves a lot of time accumulating not having to type out your email and password.
MDX does not support .ahk it seems so the script looked ugly with ; instead of #. 😖 So replace that.
Do take note that in a autohotkey script .ahk
comments are written with a semicollumn ;
and not a #
like in the script below.
e.g.
wrong ❌
#this is a comment
^!a = b
good ✅
;this is a comment
^!a = b
Always load on boot.
win + r
and type shell:startup
and paste the script there. Or
$ -
touch shortcuts.ahk;
mv shortcuts.ahk C:\Users\Remco\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup;
and insert script.
startup.ahk
#map Ctrl + Alt + q to password123
^!q::
Send, password123
return
#map Ctrl + e to *******@hotmail.com
^e::
Send, *******@hotmail.com
return
#map Ctrl + Alt + E to *******.rs@gmail.com
^!e::
Send, *******.rs@gmail.com
return
#map Ctrl + Shift + c to open Hyper Terminal
^!c::
Run, C:\Users\Remco\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Hyper
return
#map ctrl + shift + s to open Simplenote
^!s::
Run, C:\Program Files\Simplenote\Simplenote.exe
return
#Mouse button 4 + 5 = Ctrl
XButton1 & XButton2::
Send, {Ctrl Down}
KeyWait, XButton1
KeyWait, XButton2
Send, {Ctrl Up}
return
#Mouse button 4 + 5 + Middle = Alt + Shift + m
XButton2 & MButton::
SendInput !+m
Return