From 415896605e96954fa81fa3acac74a1a7377c5778 Mon Sep 17 00:00:00 2001 From: Ofir Levitan Date: Mon, 15 Sep 2025 13:23:46 +0300 Subject: [PATCH] revert: Fix screen recording on Intel graphics #669 (#1559) * remove intel * remove accidental paste * Update omarchy-cmd-screenrecord --- bin/omarchy-cmd-screenrecord | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-cmd-screenrecord b/bin/omarchy-cmd-screenrecord index 570fb582..29fda33d 100755 --- a/bin/omarchy-cmd-screenrecord +++ b/bin/omarchy-cmd-screenrecord @@ -17,7 +17,7 @@ AUDIO=$([[ $2 == "audio" ]] && echo "--audio") start_screenrecording() { filename="$OUTPUT_DIR/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4" - if lspci | grep -Eqi 'nvidia|intel.*graphics'; then + if lspci | grep -qi 'nvidia'; then wf-recorder $AUDIO -f "$filename" -c libx264 -p crf=23 -p preset=medium -p movflags=+faststart "$@" & else wl-screenrec $AUDIO -f "$filename" --ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart" "$@" &