Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 2.3 KB

AdvancedWindowSnap.md

File metadata and controls

59 lines (44 loc) · 2.3 KB

AdvancedWindowSnap.ahk

Script to snap focused window into different positions.
Author: Andrew Moore [email protected]


Features

Directional arrow keys

Command Description
WIN + ALT + UP Snap to top half of the screen.
WIN + ALT + DOWN Snap to bottom half of the screen.

 

Thirds

Command Description
WIN + ALT + INSERT Snap to left third of the screen.
WIN + ALT + HOME Snap to center third of the screen.
WIN + ALT + PgUp Snap to right third of the screen.
WIN + ALT + DELETE Snap to upper third of the screen.
WIN + ALT + END Snap to middle third of the screen.
WIN + ALT + PgDp Snap to bottom third of the screen.

 

3x3 grid

Command Description
CTRL + WIN + ALT + PrintScreen Snap to top left third of screen.
CTRL + WIN + ALT + ScrollLock Snap to top middle third of screen.
CTRL + WIN + ALT + CtrlBreak Snap to top right third of screen.
CTRL + WIN + ALT + Insert Snap to center left third of screen.
CTRL + WIN + ALT + Home Snap to center third of screen.
CTRL + WIN + ALT + PgUp Snap to center right third of screen.
CTRL + WIN + ALT + Del Snap to bottom left third of screen.
CTRL + WIN + ALT + End Snap to bottom middle third of screen.
CTRL + WIN + ALT + PgDn Snap to bottom right third of screen.

 

 


Todo

Feature additions

_TODO: Implement scooting
_TODO: Implement browser detaching
_TODO: Implement 2 thirds docking (left, right, up, down)
_TODO: Window resizing/sliding effecting two windows.

Bugfixes