From 80e6e4de9d621321490906c1272897b5a17f7640 Mon Sep 17 00:00:00 2001 From: joshholtrop Date: Mon, 4 Jan 2010 16:06:55 +0000 Subject: [PATCH] added shortcuts.ahk git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/JoshsAutoHotKey@110 8131a0b2-b21c-1c47-bd6a-f003126495bd --- shortcuts.ahk | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 shortcuts.ahk 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