Skip to content

Instantly share code, notes, and snippets.

@LenweSaralonde
Last active August 1, 2021 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LenweSaralonde/02d4db68e7c4d25e6eaf1c42d94e5b9e to your computer and use it in GitHub Desktop.
Save LenweSaralonde/02d4db68e7c4d25e6eaf1c42d94e5b9e to your computer and use it in GitHub Desktop.
Expand the World of Warcraft window over multiple monitors
; Resize World of Warcraft window over multiple monitors
; ======================================================
;
; 1. Install AutoHotkey: https://www.autohotkey.com/
; 2. Set World of Warcraft to run in Windowed mode (Main menu > System > Graphics > Display > Display mode > Windowed then OK)
; 3. Set the Windows task bar to hide automatically (right click on the task bar > ⚙️ Task bar settings > Toggle Automatically hide the task bar in desktop mode to on)
; 4. Edit the values below accordingly to your monitor setup
; 5. Save the script
;
; Run the script to resize the WoW window
;
; Macro to keep the UI on the center screen :
; /run local MONITORS = 3; w = WorldFrame:GetWidth() / MONITORS + 2 * MONITORS; UIParent:SetPoint("TOPLEFT", w, 0); UIParent:SetPoint("BOTTOMRIGHT", -w, 0);
;
; Application name
appName = World of Warcraft
; Size of one monitor
monitorWidth = 1920
monitorHeight = 1080
; Number of monitors horizontally
horizontalMonitors = 3
; Number of monitors vertically
verticalMonitors = 1
; Position of the top left corner of the first monitor
monitorY = 0
monitorX = 0
; These are the values for Windows 10 default theme
; Set those values to 0 if you play in windowed borderless mode (recommended)
borderTop = 31
borderBottom = 8
borderLeft = 8
borderRight = 8
; =============
; Resize window
; =============
windowX := monitorX - borderLeft
windowY := monitorY - borderTop
windowWidth := horizontalMonitors * monitorWidth + borderLeft + borderRight
windowHeight := verticalMonitors * monitorHeight + borderTop + borderBottom
WinMove, %appName%,, %windowX%, %windowY%, %windowWidth%, %windowHeight%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment