From 1804e5807da1a6aa39dd71e6938edc6fd5828a77 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Tue, 14 Mar 2023 21:30:04 +0100 Subject: emacs: hide menu-bar in darwin terminals --- user/emacs/early-init.el | 4 ++-- 1 file 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) -- cgit 1.4.1