>>1498706I use AHK, AutoHotKey, with the following script
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; # = windows
; + = shift
; ! = alt
; ^ = control
^!t::
WinSet, Style, ^0xC00000, A ; Remove the active window's title bar (WS_CAPTION).
return
to remove the title bar, see pic related (only left window, right one is just themed), and that dude is doing the same, but with windows classic theme.