Skip to content

Instantly share code, notes, and snippets.

@kihashi
kihashi / gist:2730800
Created May 19, 2012 13:05
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
\documentclass{article}
\usepackage{graphicx,multirow,latexsym,amssymb,amsmath}
\usepackage[margin=1in]{geometry}
%plain makes sure that we have page numbers
\pagestyle{plain}
\title{EECS 343/600 Homework \#3}
\author{John Cleaver}