JoshsAutoHotKey/shortcuts.ahk
2011-10-27 10:10:50 -04:00

31 lines
517 B
AutoHotkey

; shortcuts.ahk
; Version 1.1
; 2011-05-23
#SingleInstance force
; Win+H open hours spreadsheet
#H::
Run C:\Users\JoshHoltrop\hours\WeeklyHours2011.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\vim73\gvim.exe
return
; Win+N open Cygwin
#N::
Run C:\cygwin\bin\run.exe C:\cygwin\home\JoshHoltrop\.bin\mintty.bat
return