Rip out the last remnants of AUR

This commit is contained in:
David Heinemeier Hansson
2025-08-25 07:04:43 +02:00
parent a67fc717c1
commit dfda4f895a
11 changed files with 32 additions and 58 deletions

View File

@@ -16,15 +16,6 @@ screenrecording() {
if lspci | grep -Eqi 'nvidia|intel.*graphics'; then
wf-recorder -f "$filename" -c libx264 -p crf=23 -p preset=medium -p movflags=+faststart "$@"
else
if ! command -v wl-screenrec >/dev/null; then
notify-send "Installing wl-screenrec in order to make screen recordings..."
if omarchy-pkg-aur-accessible; then
yay -S --noconfirm wl-screenrec
else
notify-send "Installing wl-screenrec failed due to AUR being unavailable..."
fi
fi
wl-screenrec -f "$filename" --ffmpeg-encoder-options="-c:v libx264 -crf 23 -preset medium -movflags +faststart" "$@"
fi
}