Skip to content

Instantly share code, notes, and snippets.

@ChechoCZ
Forked from april/arena-macos-fixes.sh
Created November 22, 2020 01:35
Show Gist options
  • Save ChechoCZ/e21e423759a6e60119d7a5f012d37c82 to your computer and use it in GitHub Desktop.
Save ChechoCZ/e21e423759a6e60119d7a5f012d37c82 to your computer and use it in GitHub Desktop.
Fixes Magic Arena's broken full screen implementation on macOS
# this forces Arena into full screen mode on startup, set back to 3 to reset
# note that if you go into the Arena "Graphics" preference panel, it will reset all of these
# and you will need to run these commands again
defaults write com.wizards.mtga "Screenmanager Fullscreen mode" -integer 0
# replace 1680 and 1050 with your full screen resolution, or any scaled resolution your display supports
# to find the scaled resolutions, go to System Preferences --> Display
defaults write com.wizards.mtga "Screenmanager Resolution Width" -integer 1680
defaults write com.wizards.mtga "Screenmanager Resolution Height" -integer 1050
# this will disable the asset check on the next run, note that it gets set back to 1 every time you
# launch Arena, so you could have this be part of a startup script if you wanted
# in theory you could run `defaults write com.wizards.mtga "HashFilesOnStartup" -integer 0`, but that also
# seemingly gets reset on shutdown
defaults write com.wizards.mtga "HashFilesSkippedOnce" -integer 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment