git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/JoshsAutoHotKey@147 8131a0b2-b21c-1c47-bd6a-f003126495bd
26 lines
392 B
AutoHotkey
26 lines
392 B
AutoHotkey
; shortcuts.ahk
|
|
; Version 1.0
|
|
; 2010-01-04
|
|
|
|
#SingleInstance force
|
|
|
|
; Win+H open hours spreadsheet
|
|
#H::
|
|
Run D:\hours\WeeklyHours2010.xls
|
|
return
|
|
|
|
; 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\vim72\gvim.exe
|
|
return
|