diff --git a/bundle/bundle--gui.el b/bundle/bundle--gui.el index 8d4630a7..d4d2f27d 100644 --- a/bundle/bundle--gui.el +++ b/bundle/bundle--gui.el @@ -1,11 +1,11 @@ (setq default-frame-alist - '((font . "MonoLisa-11") + `((font . "MonoLisa-11") (width . 85) (height . 50) - (vertical-scroll-bars))) - -(when (eq system-type 'gnu/linux) - (add-to-list 'default-frame-alist '(fullscreen . fullscreen))) + (vertical-scroll-bars) + ,@(cond ((eq system-type 'gnu/linux) + '((fullscreen . maximized) + (undecorated . t)))))) (setq frame-resize-pixelwise t) diff --git a/early-init.el b/early-init.el index d809e22e..ec085762 100644 --- a/early-init.el +++ b/early-init.el @@ -3,5 +3,5 @@ (font . "MonoLisa-11") (width . 85) (height . 50) - (unless (eq system-type 'windows-nt) + (and (eq system-type 'gnu/linux) (undecorated . t))))