diff --git a/install/config/all.sh b/install/config/all.sh index 6f1e119e..9cb68ab4 100644 --- a/install/config/all.sh +++ b/install/config/all.sh @@ -51,4 +51,5 @@ run_logged $OMARCHY_INSTALL/config/hardware/fix-dell-xps-audio.sh run_logged $OMARCHY_INSTALL/config/hardware/fix-synaptic-touchpad.sh run_logged $OMARCHY_INSTALL/config/hardware/fix-tuxedo-backlight.sh run_logged $OMARCHY_INSTALL/config/hardware/framework16-qmk-hid.sh +run_logged $OMARCHY_INSTALL/config/hardware/intel-lmp.sh run_logged $OMARCHY_INSTALL/config/hardware/intel-ipu7-camera.sh diff --git a/install/config/hardware/intel-lmp.sh b/install/config/hardware/intel-lmp.sh new file mode 100644 index 00000000..90c9ccbe --- /dev/null +++ b/install/config/hardware/intel-lmp.sh @@ -0,0 +1,5 @@ +# Install Intel Low Power Mode package for Intel CPUs + +if omarchy-hw-intel; then + omarchy-pkg-add intel-lmp +fi diff --git a/install/omarchy-other.packages b/install/omarchy-other.packages index b11e6332..9d22c41c 100644 --- a/install/omarchy-other.packages +++ b/install/omarchy-other.packages @@ -20,6 +20,7 @@ jdk-openjdk libpulse libsass intel-ipu7-camera +intel-lmp intel-media-driver libva-intel-driver libva-nvidia-driver diff --git a/migrations/1774366575.sh b/migrations/1774366575.sh new file mode 100644 index 00000000..0e99d66d --- /dev/null +++ b/migrations/1774366575.sh @@ -0,0 +1,3 @@ +echo "Install Intel Low Power Mode for Intel CPUs" + +source "$OMARCHY_PATH/install/config/hardware/intel-lmp.sh"