Skip to content

Instantly share code, notes, and snippets.

@msgodf
Created February 6, 2016 12:50
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 msgodf/9512e25228195c3ae943 to your computer and use it in GitHub Desktop.
Save msgodf/9512e25228195c3ae943 to your computer and use it in GitHub Desktop.
Function to maximize Emacs on my laptop display (Retina MacBook Pro 13", scaled for maximum space)
(defun maximize-laptop ()
"Resize to fill my laptop display, and hide menu bar"
(interactive)
(setq ns-auto-hide-menu-bar t)
(set-frame-position nil 0 -22)
(set-frame-size nil 1660 1046 'pixelwise))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment