Files
omarchy/bin/omarchy-toggle-hybrid-gpu
David Heinemeier Hansson 8e21a5341f Wording
2026-01-15 18:02:55 -05:00

45 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
# Toggle dedicated vs integrated GPU mode via supergfxd (for hybrid gpu laptops, like Asus G14).
# Requires reboot to take effect.
# Ensure supergfxctl has been installed
if omarchy-cmd-missing supergfxctl; then
omarchy-pkg-aur-add supergfxctl
systemctl enable supergfxd
systemctl start supergfxd
# Needed to deal with restoring to sleep where going through VFIO first means we don't need to reboot.
sudo sed -i "s/\"vfio_enable\": \".*\"/\"vfio_enable\": true/" /etc/supergfxd.conf
fi
gpu_mode=$(supergfxctl -g)
case "$gpu_mode" in
"Integrated")
# Switch to hybrid mode
sudo sed -i "s/\"mode\": \".*\"/\"mode\": \"Hybrid\"/" /etc/supergfxd.conf
# Let hybrid mode be the default after system sleep
sudo rm -rf /usr/lib/systemd/system-sleep/force-igpu.sh
notify-send " Hybrid GPU" "Enabling dedicated GPU. Rebooting..."
omarchy-cmd-reboot
;;
"Hybrid")
# Switch to integrated mode
sudo sed -i "s/\"mode\": \".*\"/\"mode\": \"Integrated\"/" /etc/supergfxd.conf
# Force igpu mode after system sleep (or dgpu could get activated)
sudo mkdir -p /usr/lib/systemd/system-sleep
sudo cp $OMARCHY_PATH/default/systemd/system-sleep/force-igpu.sh /usr/lib/systemd/system-sleep/
notify-send " Hybrid GPU" "Restricting to integrated GPU. Rebooting..."
omarchy-cmd-reboot
;;
*)
notify-send " Hybrid GPU" "Hybrid GPU not found or in unknown mode."
exit 1
;;
esac