Skip to content

Instantly share code, notes, and snippets.

@noahcoad
Last active October 12, 2015 17:17
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 noahcoad/4060079 to your computer and use it in GitHub Desktop.
Save noahcoad/4060079 to your computer and use it in GitHub Desktop.
Hotkey to Change Screen Resolutions w AutoHotkey
; Requires DisplayChanger, http://12noon.com/?page_id=80
; #=Win ^=Ctrl +=Shift !=Alt
; Set this path to your tools directory
tools := "c:\tools"
; Set screen resolutions
#^0:: Run "%tools%\DisplayChanger\dccmd.exe" -max
#^1:: Run "%tools%\DisplayChanger\dccmd.exe" -width=1024 -height=768
#^2:: Run "%tools%\DisplayChanger\dccmd.exe" -width=1280 -height=1024
#^3:: Run "%tools%\DisplayChanger\dccmd.exe" -width=1280 -height=800
#^6:: Run "%tools%\DisplayChanger\dccmd.exe" -width=1600 -height=1200
#^7:: Run "%tools%\DisplayChanger\dccmd.exe" -width=1280 -height=720
#^8:: Run "%tools%\DisplayChanger\dccmd.exe" -width=800 -height=600
#^9:: Run "%tools%\DisplayChanger\dccmd.exe" -width=1920 -height=1200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment