mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* 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
6 lines
281 B
Bash
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
|