Skip to content

Instantly share code, notes, and snippets.

@seeker
Created June 21, 2012 11:06
Show Gist options
  • Save seeker/2965147 to your computer and use it in GitHub Desktop.
Save seeker/2965147 to your computer and use it in GitHub Desktop.
Toggle selected window between transparent / opaque
; Toggle selected window between transparent / opaque (alt + shift + t)
n=0
!+t::
WinGetActiveTitle, T
if n=0
{
WinSet, Transparent, 222, %T%
n=1
Exit
}
WinSet, Transparent, Off, %T%
n=0
Exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment