Skip to content

Instantly share code, notes, and snippets.

@eteeselink
Created December 7, 2014 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eteeselink/1ce2f676931ef24757e9 to your computer and use it in GitHub Desktop.
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+`.
#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