Last active
December 30, 2022 15:44
-
-
Save atruskie/99a498ac43b91deb91eab4069b6047b9 to your computer and use it in GitHub Desktop.
AutoHotkey script to bind Win+~ keyboard shortcut to Windows Terminal
This file contains 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
#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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
great work!