From 402da79f54e6442b0b63724106a6ae99e1fe723a Mon Sep 17 00:00:00 2001 From: Mateusz Kowalczyk Date: Thu, 7 May 2026 19:12:48 +0200 Subject: [PATCH] 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 --- install/config/hardware/intel/video-acceleration.sh | 4 ++-- migrations/1778165347.sh | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 migrations/1778165347.sh diff --git a/install/config/hardware/intel/video-acceleration.sh b/install/config/hardware/intel/video-acceleration.sh index 33cc6fbe..bbcc1fe9 100644 --- a/install/config/hardware/intel/video-acceleration.sh +++ b/install/config/hardware/intel/video-acceleration.sh @@ -1,8 +1,8 @@ # This installs hardware video acceleration for Intel GPUs if INTEL_GPU=$(lspci | grep -iE 'vga|3d|display' | grep -i 'intel'); then - # HD Graphics / Iris / Xe / Arc use intel-media-driver + VPL - if [[ ${INTEL_GPU,,} =~ (hd\ graphics|uhd\ graphics|xe|iris|arc) ]]; then + # HD Graphics / Iris / Xe / Arc / Non-Arc Panther Lake use intel-media-driver + VPL + if [[ ${INTEL_GPU,,} =~ (hd\ graphics|uhd\ graphics|xe|iris|arc|panther\ lake) ]]; then omarchy-pkg-add intel-media-driver libvpl vpl-gpu-rt elif [[ ${INTEL_GPU,,} =~ "gma" ]]; then # Older generations from 2008 to ~2014-2017 use libva-intel-driver diff --git a/migrations/1778165347.sh b/migrations/1778165347.sh new file mode 100644 index 00000000..cbd35fec --- /dev/null +++ b/migrations/1778165347.sh @@ -0,0 +1,5 @@ +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