;win+c, run 'computer management' #c::Run compmgmt.msc ;win+s, run 'service' #s::Run services.msc ;ctrl+win+c, run 'Control panel' ^#c::Run control ;win+v, if vim already open, activate it, otherwise, open it. #v:: IfWinExist ahk_class Vim WinActivate else Run "C:/Program Files/Vim/vim72/gvim.exe" return ;win + f, if 'EveryThing' already open, activate it, otherwise, open it. #f:: IfWinExist Everything WinActivate else Run "C:\Program Files\Everything\Everything.exe" return ;win + l, if 'Lingoes' already open, activate it, otherwise, open it. #l:: IfWinExist LINGOES WinActivate else Run "C:\Program Files\Lingoes\Translator2\Lingoes.exe" return ;win+t, if 'TotalCommander' already open, activate it, otherwise, open it. #t:: IfWinExist ahk_class TTOTAL_CMD WinActivate else Run "C:\dev\tc7.5\TOTALCMD.EXE" return ;win+n, if 'EverNote' already open, activate it, otherwise, open it. #n:: IfWinExist "chenyi1976 - Evernote" WinActivate else Run "C:\Program Files\Evernote\Evernote3.5\Evernote.exe" return ;support ctrl+v to paste to dos command window. #IfWinActive ahk_class ConsoleWindowClass ^v:: send %Clipboard% return