On windows dont be undecorated

This commit is contained in:
Marcus Kammer 2023-10-03 09:47:19 +02:00
parent 3a772463f3
commit 35c6d3c4e8

View file

@ -1,12 +1,7 @@
(if (eq system-type 'windows-nt)
(setq initial-frame-alist
'((fullscreen . maximized)
(font . "MonoLisa-11")
(width . 85)
(height . 55)))
(setq initial-frame-alist (setq initial-frame-alist
'((fullscreen . maximized) '((fullscreen . maximized)
(font . "MonoLisa-11") (font . "MonoLisa-11")
(width . 85) (width . 85)
(height . 55) (height . 55)
(unless (eq system-type 'windows-nt)
(undecorated . t)))) (undecorated . t))))