From 4bbf3be8f08ae28fd33011b595a92f66e33c51c1 Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Fri, 16 Jan 2026 11:18:18 -0500 Subject: [PATCH] Add without audio option to screenrecord menu --- bin/omarchy-menu | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 6e0e5012..941d9be9 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -144,13 +144,14 @@ show_webcam_select_menu() { show_screenrecord_menu() { omarchy-cmd-screenrecord --stop-recording && exit 0 - case $(menu "Screenrecord" " With desktop audio\n With desktop + microphone audio\n With desktop + microphone audio + webcam") in + case $(menu "Screenrecord" " With desktop audio\n With desktop + microphone audio\n With desktop + microphone audio + webcam\n Without audio") in *"With desktop audio") omarchy-cmd-screenrecord --with-desktop-audio ;; *"With desktop + microphone audio") omarchy-cmd-screenrecord --with-desktop-audio --with-microphone-audio ;; *"With desktop + microphone audio + webcam") local device=$(show_webcam_select_menu) || { back_to show_capture_menu; return; } omarchy-cmd-screenrecord --with-desktop-audio --with-microphone-audio --with-webcam --webcam-device="$device" ;; + *"Without audio") omarchy-cmd-screenrecord ;; *) back_to show_capture_menu ;; esac }