From b07f8fe248db0c9916eccbc249f24d7a9107a3ce Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 11 Nov 2025 17:43:34 -0600 Subject: a/v recording: fix setup, add test functionality and indicator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- modules/modeline-config.el | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/modeline-config.el') 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 -- cgit v1.2.3