Skip to content

Instantly share code, notes, and snippets.

/NewTitle.ahk Secret

Created October 17, 2016 17:26
Show Gist options
  • Save anonymous/b68c78b57834e2425a379ee28666aa8f to your computer and use it in GitHub Desktop.
Save anonymous/b68c78b57834e2425a379ee28666aa8f to your computer and use it in GitHub Desktop.
#SingleInstance, force
; Win+T will prompt user for a new title for active window.
#t::
{
WinGetTitle, winTitle, A
InputBox, winTitle, New title, New title for [%winTitle%],, 500, 130,,,,, %winTitle%
WinSetTitle, A, , %winTitle%
return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment