Response below/inline for email William Denton wrote:
> (original email sent 25 Jul 2025 at 14:53)
> 
> Has anyone configured their mode line to have the Org clock at the
> right-hand side?  If so, how?

[...]

> but it looks like I might have to construct my own mode line string.

You might have to but it's not that difficult.  I have the following:

--8<---------------cut here---------------start------------->8---
(setq-default mode-line-format
                (list
                 "%e"
                 '(:eval evil-mode-line-tag)
                 " "
                 '(:eval mode-line-mule-info )
                 "%+"
                 (propertize " %b" 'face 'bold)
                 '(:eval vc-mode )
                 " "
                 '(:eval mode-line-modes )
                                        ;" "
                 'mode-line-format-right-align
                 '(:eval mode-line-misc-info )
                 " [%f]"
                 '(:eval mode-line-end-spaces)))
--8<---------------cut here---------------end--------------->8---

just as an example of a mode line that uses the
mode-line-format-right-align.

-- 
: Eric S Fraga, with org release_9.7.11 in Emacs 31.0.50

Reply via email to