From 5a7008c01b005bc75474cbc4134e526151fc9ade Mon Sep 17 00:00:00 2001 From: Sergei Andronov Date: Sat, 7 Mar 2026 19:53:35 +0100 Subject: [PATCH] Install intel-media-driver for Arc 130T/140T (intel 255H) (#4922) * Install intel-media-driver for 130T/140T (intel 255H) * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: David Heinemeier Hansson Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- install/config/hardware/intel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/config/hardware/intel.sh b/install/config/hardware/intel.sh index f1c375d7..6c2b8564 100644 --- a/install/config/hardware/intel.sh +++ b/install/config/hardware/intel.sh @@ -1,8 +1,8 @@ # This installs hardware video acceleration for Intel GPUs # Check if we have an Intel GPU at all if INTEL_GPU=$(lspci | grep -iE 'vga|3d|display' | grep -i 'intel'); then - # HD Graphics and newer uses intel-media-driver - if [[ ${INTEL_GPU,,} =~ "hd graphics"|"xe"|"iris" ]]; then + # HD Graphics / Iris / Xe / Arc use intel-media-driver + if [[ ${INTEL_GPU,,} =~ "hd graphics"|"xe"|"iris"|"arc" ]]; then omarchy-pkg-add intel-media-driver elif [[ ${INTEL_GPU,,} =~ "gma" ]]; then # Older generations from 2008 to ~2014-2017 use libva-intel-driver