Merge pull request #4286 from robzolkos/add-no-audio-screenrecord

Add "Without audio" option to screenrecord menu
This commit is contained in:
Ryan Hughes
2026-02-17 16:28:53 -05:00
committed by GitHub
+2 -1
View File
@@ -136,7 +136,7 @@ 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")
@@ -146,6 +146,7 @@ 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
}