12 lines
362 B
EmacsLisp
12 lines
362 B
EmacsLisp
(if (eq system-type 'windows-nt)
|
|
(setq initial-frame-alist
|
|
'((fullscreen . maximized)
|
|
(font . "MonoLisa-11")
|
|
(width . 85)
|
|
(height . 55)))
|
|
(setq initial-frame-alist
|
|
'((fullscreen . maximized)
|
|
(font . "MonoLisa-11")
|
|
(width . 85)
|
|
(height . 55)
|
|
(undecorated . t))))
|