diff --git a/shortcuts.ahk b/shortcuts.ahk new file mode 100644 index 0000000..4d0b469 --- /dev/null +++ b/shortcuts.ahk @@ -0,0 +1,20 @@ +; 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