aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-02-06 13:51:36 -0600
committerCraig Jennings <c@cjennings.net>2026-02-06 16:20:45 -0600
commit569f9d77d6b887d7b134b946315e2afe167d765d (patch)
tree42cd9eec3e9a8a874c4c667dfd9f86689310c3f5 /modules
parent3bbab576c5ded49f4e5ab8c5a39d984e5929a4e0 (diff)
downloaddotemacs-569f9d77d6b887d7b134b946315e2afe167d765d.tar.gz
dotemacs-569f9d77d6b887d7b134b946315e2afe167d765d.zip
fix(test): add missing testutil require for sanitize-org-body tests
Diffstat (limited to 'modules')
-rw-r--r--modules/video-audio-recording.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/video-audio-recording.el b/modules/video-audio-recording.el
index 4e57951d..5e812881 100644
--- a/modules/video-audio-recording.el
+++ b/modules/video-audio-recording.el
@@ -130,16 +130,16 @@ If nil, will auto-detect on first use.")
(defun cj/recording-modeline-indicator ()
"Return modeline string showing active recordings.
-Shows 󰍬 (microphone) for audio, 󰃽 (camcorder) for video.
+Shows 🎤 (microphone) for audio, 🎬 (clapper board) for video.
Checks if process is actually alive, not just if variable is set."
(let ((audio-active (and cj/audio-recording-ffmpeg-process
(process-live-p cj/audio-recording-ffmpeg-process)))
(video-active (and cj/video-recording-ffmpeg-process
(process-live-p cj/video-recording-ffmpeg-process))))
(cond
- ((and audio-active video-active) " 󰍬󰃽 ")
- (audio-active " 󰍬 ")
- (video-active " 󰃽 ")
+ ((and audio-active video-active) " 🎤🎬 ")
+ (audio-active " 🎤 ")
+ (video-active " 🎬 ")
(t ""))))
;;; ============================================================