mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Optimize: different mode-line height in different platforms.
This commit is contained in:
parent
ebf3ddd249
commit
a7dda5edb7
1 changed files with 5 additions and 1 deletions
|
@ -80,7 +80,11 @@
|
|||
;; Variables
|
||||
;;
|
||||
|
||||
(defvar doom-modeline-height 25
|
||||
(defvar doom-modeline-height (pcase system-type
|
||||
('darwin 25)
|
||||
('gnu/linux 30)
|
||||
('windows-nt 40)
|
||||
(_ 26))
|
||||
"How tall the mode-line should be (only respected in GUI Emacs).")
|
||||
|
||||
(defvar doom-modeline-bar-width 3
|
||||
|
|
Loading…
Reference in a new issue