Add missing package for Intel Graphics Card based device (#910)

* Add missing package for Intel Graphics Card based device

* Add migration to add the missing package
This commit is contained in:
Brosseau Valentin 2025-08-22 14:10:55 +02:00 committed by GitHub
parent 9375dfca21
commit 1942ac68dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,7 @@ yay -S --noconfirm --needed \
omarchy-chromium-bin omarchy-chromium-bin
# Add screen recorder based on GPU # Add screen recorder based on GPU
if lspci | grep -qi 'nvidia'; then if lspci | grep -Eqi 'nvidia|intel.*graphics'; then
yay -S --noconfirm --needed wf-recorder yay -S --noconfirm --needed wf-recorder
else else
yay -S --noconfirm --needed wl-screenrec yay -S --noconfirm --needed wl-screenrec

5
migrations/1755548643.sh Normal file
View File

@ -0,0 +1,5 @@
echo "Install wf-recorder for intel based device"
if lspci | grep -Eqi 'nvidia|intel.*graphics'; then
yay -S --noconfirm --needed wf-recorder
fi