Created
December 7, 2014 10:06
-
-
Save eteeselink/1ce2f676931ef24757e9 to your computer and use it in GitHub Desktop.
AutoHotkey script for starting a Console2 window like it's a Quake console, triggered on WINKEY+`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Warn All | |
#sc029:: | |
DetectHiddenWindows, on | |
if WinExist("QuakeCon",,"ahk") | |
if WinActive("QuakeCon",,"ahk") { | |
WinMinimize | |
WinHide | |
} | |
else { | |
WinShow | |
WinActivate | |
} | |
else | |
Run c:\bin\Console2\Console.exe | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment