Group all intel specifics in subdirectory

This commit is contained in:
David Heinemeier Hansson
2026-03-24 20:39:01 +01:00
parent e2c8bb67cc
commit c4c55b5c33
9 changed files with 10 additions and 9 deletions
+6 -6
View File
@@ -34,13 +34,13 @@ run_logged $OMARCHY_INSTALL/config/hardware/printer.sh
run_logged $OMARCHY_INSTALL/config/hardware/usb-autosuspend.sh
run_logged $OMARCHY_INSTALL/config/hardware/ignore-power-button.sh
run_logged $OMARCHY_INSTALL/config/hardware/nvidia.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel-video-acceleration.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel-lmp.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel-thermald.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel-ipu7-camera.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel/video-acceleration.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel/lmp.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel/thermald.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel/ipu7-camera.sh
run_logged $OMARCHY_INSTALL/config/hardware/vulkan.sh
run_logged $OMARCHY_INSTALL/config/hardware/fix-intel-panther-lake-display.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel-panther-lake-audio.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel/fix-ptl-display.sh
run_logged $OMARCHY_INSTALL/config/hardware/intel/ptl-audio.sh
run_logged $OMARCHY_INSTALL/config/hardware/fix-f13-amd-audio-input.sh
run_logged $OMARCHY_INSTALL/config/hardware/fix-bcm43xx.sh
run_logged $OMARCHY_INSTALL/config/hardware/fix-apple-spi-keyboard.sh
@@ -1,5 +1,6 @@
# Install Panther Lake audio kernel for Intel Panther Lake systems
# The linux-ptl-audio kernel includes audio driver patches not yet in mainline.
if omarchy-hw-intel-ptl; then
echo "Detected Intel Panther Lake, installing PTL audio kernel..."
@@ -1,5 +1,5 @@
# 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 / Iris / Xe / Arc use intel-media-driver
if [[ ${INTEL_GPU,,} =~ (hd\ graphics|uhd\ graphics|xe|iris|arc) ]]; then
+1 -1
View File
@@ -1,3 +1,3 @@
echo "Enable thermald for Intel Sandy Bridge and newer laptops"
source "$OMARCHY_PATH/install/config/hardware/intel-thermald.sh"
source "$OMARCHY_PATH/install/config/hardware/intel/thermald.sh"
+1 -1
View File
@@ -1,3 +1,3 @@
echo "Install Intel Low Power Mode for Intel CPUs"
source "$OMARCHY_PATH/install/config/hardware/intel-lmp.sh"
source "$OMARCHY_PATH/install/config/hardware/intel/lmp.sh"