diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-11 17:43:34 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-11 17:43:34 -0600 |
| commit | b07f8fe248db0c9916eccbc249f24d7a9107a3ce (patch) | |
| tree | f6336d009b589f1840fadac901bf2758563af9aa /modules/modeline-config.el | |
| parent | 23b3df60eb619351fada7b83c9646c86e1addbd2 (diff) | |
a/v recording: fix setup, add test functionality and indicatorlkg
Integrates a modeline indicator to display active recording status
in Emacs. The indicator shows "🔴Audio", "🔴Video", or "🔴A+V" based
on the active recording processes. Includes functions for starting
and stopping audio/video recordings, with sentinel processes
ensuring timely updates to the modeline. Also adds extensive
integration tests to validate modeline synchronization.
Diffstat (limited to 'modules/modeline-config.el')
| -rw-r--r-- | modules/modeline-config.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/modeline-config.el b/modules/modeline-config.el index a1c85caa..f2b80561 100644 --- a/modules/modeline-config.el +++ b/modules/modeline-config.el @@ -155,6 +155,8 @@ Shows only in active window.") ;; RIGHT SIDE (using Emacs 30 built-in right-align) ;; Order: leftmost to rightmost as they appear in the list mode-line-format-right-align + (:eval (when (fboundp 'cj/recording-modeline-indicator) + (cj/recording-modeline-indicator))) cj/modeline-vc-branch " " cj/modeline-misc-info |
