diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2026-02-27 22:29:36 +0100 |
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2026-02-27 22:29:36 +0100 |
| commit | 03b608c6582037a17cf56cde2f7d720289e46fe0 (patch) | |
| tree | 266136e97bdfdebb322d623a9441af33781431bf | |
| parent | 4c4106a09a91c96cfc756802ca84a9bf9bf1e32c (diff) | |
emacs: Disable CSDs on Niri
| -rw-r--r-- | .config/emacs/early-init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/emacs/early-init.el b/.config/emacs/early-init.el index 0dfbfa6..ccae20b 100644 --- a/.config/emacs/early-init.el +++ b/.config/emacs/early-init.el @@ -54,6 +54,7 @@ (add-to-list 'default-frame-alist '(fullscreen . maximized)) (when (featurep 'ns) (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t)))) + (add-to-list 'default-frame-alist '(undecorated . t)) (menu-bar-mode -1)) (scroll-bar-mode -1) (tool-bar-mode -1) @@ -101,4 +102,4 @@ 'mode-line nil :background background :foreground foreground - :box 'unspecified))
\ No newline at end of file + :box 'unspecified)) |