Skip to content

Instantly share code, notes, and snippets.

@Illyism
Created December 21, 2013 13:01
Show Gist options
  • Save Illyism/8069025 to your computer and use it in GitHub Desktop.
Save Illyism/8069025 to your computer and use it in GitHub Desktop.
AutoHotKey configuration for running cmder, sublime text and Gmail.
; Ctrl+Alt+T - Run Command Line
^!t::
SetWorkingDir, C:\Tools\cmder
Run Cmder.bat
Return
; Win+Z - Run Sublime Text
#z::
Run "C:\Program Files\Sublime Text 3\sublime_text.exe"
Return
; Win+M - Open Gmail in Chrome
#m::
Run "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app="https://mail.google.com/mail/"
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment