From aebc554efe3ff3612362f9c0ea538a985507a9a4 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 18 Feb 2026 15:29:24 +0100 Subject: [PATCH] Tweak language --- bin/omarchy-menu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index ba60cef8..55b27f8a 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -136,7 +136,8 @@ 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\n Without audio") in + case $(menu "Screenrecord" " With no audio\n With desktop audio\n With desktop + microphone audio\n With desktop + microphone audio + webcam") in + *"With no audio") omarchy-cmd-screenrecord ;; *"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") @@ -146,7 +147,6 @@ show_screenrecord_menu() { } 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 }