From 5914d12c21be3d56d994f872e02716bafe36561e Mon Sep 17 00:00:00 2001 From: Dipesh Babu <59379458+dipeshbabu@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:44:12 -0500 Subject: [PATCH 1/3] fix typo (#4658) --- changes/v3-4-0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changes/v3-4-0.md b/changes/v3-4-0.md index c99b3e41..cec69318 100644 --- a/changes/v3-4-0.md +++ b/changes/v3-4-0.md @@ -6,7 +6,7 @@ - Add Tmux with tailored config for improved aesthetics and ergonomics accessible via `t` alias in any terminal by @dhh - Add hibernation by default on new installs by @dhh - Add hybrid GPU mode toggle via supergfxctl for compatible laptops through _Trigger > Hardware_ by @dhh -- Add full compatibility (volume/brightness/hybrid GPU switching) with Asus Zephyrous G14/16 laptops by @dhh +- Add full compatibility (volume/brightness/hybrid GPU switching) with Asus Zephyrus G14/16 laptops by @dhh - Add Motorcomm YT6801 ethernet driver for Slimbook + Tuxedo laptops by @dhh - Add automatic power profile switching when plugged/unplugged by @pomartel - Add SSH port forwarding functions fip/dip/lip for web development by @dhh From f8df232902a2e4f6cb48beeff224d266e5f6db73 Mon Sep 17 00:00:00 2001 From: Dipesh Babu <59379458+dipeshbabu@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:57:44 -0500 Subject: [PATCH 2/3] docs: list deno and zig in install-dev-env usage (#4657) --- bin/omarchy-install-dev-env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-install-dev-env b/bin/omarchy-install-dev-env index 07d6f968..3721ff61 100755 --- a/bin/omarchy-install-dev-env +++ b/bin/omarchy-install-dev-env @@ -3,7 +3,7 @@ # Install one of the supported development environments. Usually called via Install > Development > * in the Omarchy Menu. if [[ -z "$1" ]]; then - echo "Usage: omarchy-install-dev-env " >&2 + echo "Usage: omarchy-install-dev-env " >&2 exit 1 fi From a449e4f108b2ff42e34228aa472cbda74f437f9d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 20 Feb 2026 07:52:47 +0100 Subject: [PATCH 3/3] Fix wake --- bin/omarchy-toggle-hybrid-gpu | 3 ++- default/systemd/system-sleep/force-igpu | 0 2 files changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 default/systemd/system-sleep/force-igpu diff --git a/bin/omarchy-toggle-hybrid-gpu b/bin/omarchy-toggle-hybrid-gpu index 3c36edff..27a6a3ab 100755 --- a/bin/omarchy-toggle-hybrid-gpu +++ b/bin/omarchy-toggle-hybrid-gpu @@ -31,8 +31,9 @@ case "$gpu_mode" in ;; "Hybrid") if gum confirm "Use only integrated GPU and reboot?"; then - # Switch to integrated mode + # Switch to integrated mode and ensure vfio is enabled (needed for sleep/wake trick) sudo sed -i "s/\"mode\": \".*\"/\"mode\": \"Integrated\"/" /etc/supergfxd.conf + sudo sed -i 's/"vfio_enable": false/"vfio_enable": true/' /etc/supergfxd.conf # Force igpu mode after system sleep (or dgpu could get activated) sudo mkdir -p /usr/lib/systemd/system-sleep diff --git a/default/systemd/system-sleep/force-igpu b/default/systemd/system-sleep/force-igpu old mode 100644 new mode 100755