diff options
author | jao <jao@gnu.org> | 2025-10-11 00:32:06 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-10-11 00:32:06 +0100 |
commit | 85bb81772f3c26890c7cc5eba6d30e3db2350af6 (patch) | |
tree | 1d6e6f5a5811f294b41eaaabfb3db3ec3827d0d8 | |
parent | 80b3d1c5f47acd867339ce42d5fe9960c2bf5f45 (diff) | |
download | elibs-85bb81772f3c26890c7cc5eba6d30e3db2350af6.tar.gz elibs-85bb81772f3c26890c7cc5eba6d30e3db2350af6.tar.bz2 |
geometry tweaks for mac
-rw-r--r-- | init.el | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1117,8 +1117,9 @@ (vertical-scroll-bars . nil) (scroll-bar-width . 0) (menu-bar . nil) - (width . 163) - (height . 67))) + ,@(jao-when-darwin '((internal-border-width . 5) + (width . 163) + (height . 70))))) ;;;; frame layout, title, etc (setq frame-title-format '("%b - emacs")) @@ -1127,6 +1128,8 @@ (jao-when-linux (menu-bar-mode -1)) +(setq ns-pop-up-frames nil) + ;; (setting it to nil avoids mouse wrapping after other-frame) (setq focus-follows-mouse (and (jao-is-linux) window-system t)) |