all repos — nixfiles @ 1804e5807da1a6aa39dd71e6938edc6fd5828a77

System and user configuration, managed by nix and home-manager

emacs: hide menu-bar in darwin terminals
Alan Pearce alan@alanpearce.eu
Tue, 14 Mar 2023 21:30:04 +0100
commit

1804e5807da1a6aa39dd71e6938edc6fd5828a77

parent

69dba9ad76730fa435a797e1586231c78d189d54

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M user/emacs/early-init.eluser/emacs/early-init.el
@@ -4,8 +4,8 @@ initial-major-mode 'fundamental-mode       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)