diff options
| author | Craig Jennings <c@cjennings.net> | 2026-07-20 15:38:23 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-07-20 15:38:23 -0500 |
| commit | 1ccd7bddf55c41202afe316e70fa01059e1bcbbb (patch) | |
| tree | fee8bbe60482ecd7fba283a0e1aba9927db6aa6d /init.el | |
| parent | 404590623599398f120cd73d44ad235271c3b5bd (diff) | |
| download | dotemacs-1ccd7bddf55c41202afe316e70fa01059e1bcbbb.tar.gz dotemacs-1ccd7bddf55c41202afe316e70fa01059e1bcbbb.zip | |
fix(agenda): spawn the agenda frame tiled, not compositor-fullscreen
I dropped (fullscreen . fullboth) from the spawned frame so a tiling WM places it side by side with the working frame. "Fullscreen" was the wrong word for the intent: a normal frame at its full tiled position, not one covering the whole output. The engage-routing and focus logic are unchanged and matter more now, since a task opens in the adjacent working pane.
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ (require 'org-config) ;; basic org-mode settings (require 'org-faces-config) ;; custom themeable faces for agenda keywords + priorities (require 'org-agenda-config) ;; agenda, task tracking, and notifications -(require 'org-agenda-frame) ;; S-<f8> dedicated fullscreen agenda frame +(require 'org-agenda-frame) ;; S-<f8> dedicated agenda frame (tiled beside the working frame) (require 'org-babel-config) ;; org-mode prog blocks; literate programming (require 'org-capture-config) (require 'org-contacts-config) ;; fully integrated org-mode contacts management |
