chore(macos): No longer trigger fullscreen on startup

Recent Emacs 27 builds use the native macOS fullscreen for the first
10-20 seconds after startup when `ns-use-native-fullscreen` is set to
nil during startup.

So instead of forcing emacs into fullscreen, just force maximize the
window on startup instead.
This commit is contained in:
2020-02-22 23:48:35 +00:00
parent 6f3efe7233
commit 4b599de686

View File

@@ -29,7 +29,7 @@
(setq ns-use-native-fullscreen nil)
;; Set initial frame to fullscreen when Emacs starts.
(add-to-list 'initial-frame-alist '(fullscreen . fullboth))
(add-to-list 'initial-frame-alist '(fullscreen . maximized))
(provide 'siren-core-macos)
;;; siren-core-macos.el ends here