Files
omarchy/migrations/1753176520.sh
David Heinemeier Hansson 8071642b66 Use consistent conditional
2025-07-22 12:37:57 -04:00

12 lines
284 B
Bash

echo "Install wf-recorder for screen recording for nvidia"
if lspci | grep -qi 'nvidia'; then
if ! command -v wf-recorder &>/dev/null; then
yay -S --noconfirm --needed wf-recorder
fi
if command -v wl-screenrec &>/dev/null; then
yay -R --noconfirm wl-screenrec
fi
fi