Browse Source

default fullscreen at work

master
Marc Pohling 6 years ago
parent
commit
2728472416
1 changed files with 11 additions and 11 deletions
  1. 22
      config.org

22
config.org

@ -99,17 +99,17 @@
;; pm should be fullscreen, too
#+BEGIN_SRC emacs-lisp
(if (display-graphic-p)
(progn
(setq initial-frame-alist
'(
(width . 165)
(height . 70)))
(setq default-frame-alist
'(
(width . 165)
(height . 70))))
)
(if (display-graphic-p)
(pcase my/whoami
("home" (progn
(setq initial-frame-alist
'((width . 165)
(height . 70)))
(setq default-frame-alist
'((width . 165)
(height . 70)))))
("work_remote" (add-to-list 'initial-frame-alist '(fullscreen . maximized)))
("work_hyperv" (add-to-list 'initial-frame-alist '(fullscreen . maximized)))))
#+END_SRC
* Visuals

Loading…
Cancel
Save