21 lines
310 B
AutoHotkey
Executable File
21 lines
310 B
AutoHotkey
Executable File
; shortcuts.ahk
|
|
; Version 1.1
|
|
; 2011-05-23
|
|
|
|
#SingleInstance force
|
|
|
|
; Win+A open command prompt (used to be aterm)
|
|
#A::
|
|
Run C:\Windows\System32\cmd.exe
|
|
return
|
|
|
|
; Win+C open calculator
|
|
#C::
|
|
Run C:\Windows\System32\calc.exe
|
|
return
|
|
|
|
; Win+G open GVIM
|
|
#G::
|
|
Run C:\apps\Vim\vim73\gvim.exe
|
|
return
|