diff options
Diffstat (limited to 'user')
-rw-r--r-- | user/emacs/early-init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/emacs/early-init.el b/user/emacs/early-init.el index 22c5161c..e6ede93d 100644 --- a/user/emacs/early-init.el +++ b/user/emacs/early-init.el @@ -4,8 +4,8 @@ package-quickstart t frame-inhibit-implied-resize t) -;; Disable all the bars, unless on OSX, in which case, keep the menu bar. -(unless (eq system-type 'darwin) +;; Disable all the bars, unless on macOS, in which case, keep the menu bar. +(unless (eq window-system 'ns) (menu-bar-mode -1)) (scroll-bar-mode -1) (tool-bar-mode -1) |