diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-06 13:51:36 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-06 16:20:45 -0600 |
| commit | d08759c7715436fb6d71501b04171f6bb9badd62 (patch) | |
| tree | b7ea267c3373f9b783dd8c5876bc63c834fe96c7 /modules | |
| parent | f5f146e04dcb246f8dc8aa0ec580424f6145381e (diff) | |
| download | dotemacs-d08759c7715436fb6d71501b04171f6bb9badd62.tar.gz dotemacs-d08759c7715436fb6d71501b04171f6bb9badd62.zip | |
fix(test): add missing testutil require for sanitize-org-body tests
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/video-audio-recording.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/video-audio-recording.el b/modules/video-audio-recording.el index 4e57951d8..5e812881d 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 "")))) ;;; ============================================================ |
