From a05abd85262ce76bfe178d5cb5ca20d6f6c831dc Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Mon, 13 Jul 2020 13:30:21 +0200 Subject: [PATCH] show menu bar on MacOS, since it doesn't clutter the menu thanks to globalmenu --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index dc440bf..0144094 100644 --- a/init.el +++ b/init.el @@ -25,7 +25,9 @@ (require 'use-package) ;; essential config -(menu-bar-mode -1) +(if (eq system-type 'darwin) + (menu-bar-mode 1) ; if on a mac, there's global menu anyway + (menu-bar-mode -1)) (tool-bar-mode -1) (toggle-scroll-bar 1) (global-display-line-numbers-mode)