Skip to content

Instantly share code, notes, and snippets.

@davidwengier
Created August 25, 2020 06:18
Show Gist options
  • Save davidwengier/d86627d59ea8856af24e8b4900e112ce to your computer and use it in GitHub Desktop.
Save davidwengier/d86627d59ea8856af24e8b4900e112ce to your computer and use it in GitHub Desktop.
AutoHotKey Script to toggle window title bars
;-Caption
LWIN & LButton::
WinSet, Style, -0xC00000, A
WinSet, Style, -0x40000, A
return
;
;+Caption
LWIN & RButton::
WinSet, Style, +0xC00000, A
WinSet, Style, +0x40000, A
return
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment