Skip to content

Instantly share code, notes, and snippets.

@atruskie
Last active December 30, 2022 15:44
Show Gist options
  • Star 26 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save atruskie/99a498ac43b91deb91eab4069b6047b9 to your computer and use it in GitHub Desktop.
Save atruskie/99a498ac43b91deb91eab4069b6047b9 to your computer and use it in GitHub Desktop.
AutoHotkey script to bind Win+~ keyboard shortcut to Windows Terminal
#NoEnv
#SingleInstance force
SendMode Input
DetectHiddenWindows, on
SetWinDelay, 0
#`::
terminal := WinExist("ahk_exe WindowsTerminal.exe")
if (terminal)
{
active := WinActive("ahk_id " terminal)
if (active)
WinMinimize, ahk_id %active%
else
WinActivate, ahk_id %terminal%
}
else
Run, wt.exe
Return
@eliannelavoie
Copy link

Thanks a lot!

@PhilDim1
Copy link

I was using https://github.com/lonepie/mintty-quake-console , pretty simple to get it to run wt.exe instead of mintty/wsltty. Although the latest wt preview (1.2) absolutely breaks it. Your little script works very nicely, and honestly, is much easier for me to understand. With wt 1.2, if you stick an -F on the end (ie. Run, wt.exe -F) it will start fullscreen, which is pretty nice. Thanks!

@xxjapp
Copy link

xxjapp commented Apr 15, 2021

great work!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment