Files
arthur-os/migrations/1778165347.sh
T
Mateusz KowalczykandGitHub 402da79f54 Install hardware video acceleration for non-X-series Panther Lake Chips (#5655)
* Adjust condition to also match non-X series Panther Lake GPUs.

* Add migration to install GPU acceleration on non-X Panther Lake systems.

* Update comment with Non-Arc Panther Lake GPUs mentioned.

* Simplify conditions in the migration
2026-05-07 19:12:48 +02:00

6 lines
281 B
Bash

echo "Install hardware video acceleration for Intel GPUs on non-X Panther Lake systems"
if lspci | grep -iE 'vga|3d|display' | grep -i 'intel' | grep -i 'panther lake' | grep -qi 'intel graphics'; then
bash "$OMARCHY_PATH/install/config/hardware/intel/video-acceleration.sh"
fi