Skip to content

Instantly share code, notes, and snippets.

@kihashi
Created May 19, 2012 13:05
Show Gist options
  • Save kihashi/2730800 to your computer and use it in GitHub Desktop.
Save kihashi/2730800 to your computer and use it in GitHub Desktop.
This Autohotkey script removes the border from a window and places it in the upper left hand corner of the current monitor.
^!f::
WinGetTitle, currentWindow, A
IfWinExist %currentWindow%
{
WinSet, Style, ^0xC00000 ; toggle title bar
; Replace the below with the size of your monitor (which is also the resolution that the game should be set to).
WinMove, , , 0, 0, 1920, 1080
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment