From 5c70555308344d23fd29481a763e462cd4297ab8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 21 Feb 2026 17:52:15 +0100 Subject: [PATCH] Setup hibernation as part of post-install So limine will be ready --- install/config/all.sh | 1 - install/post-install/all.sh | 1 + install/{config => post-install}/hibernation.sh | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename install/{config => post-install}/hibernation.sh (100%) diff --git a/install/config/all.sh b/install/config/all.sh index 875ba45d..53956736 100644 --- a/install/config/all.sh +++ b/install/config/all.sh @@ -23,7 +23,6 @@ run_logged $OMARCHY_INSTALL/config/omarchy-ai-skill.sh run_logged $OMARCHY_INSTALL/config/kernel-modules-hook.sh run_logged $OMARCHY_INSTALL/config/powerprofilesctl-rules.sh run_logged $OMARCHY_INSTALL/config/wifi-powersave-rules.sh -run_logged $OMARCHY_INSTALL/config/hibernation.sh run_logged $OMARCHY_INSTALL/config/hardware/network.sh run_logged $OMARCHY_INSTALL/config/hardware/set-wireless-regdom.sh run_logged $OMARCHY_INSTALL/config/hardware/fix-fkeys.sh diff --git a/install/post-install/all.sh b/install/post-install/all.sh index bb5c0839..d7caae25 100644 --- a/install/post-install/all.sh +++ b/install/post-install/all.sh @@ -1,3 +1,4 @@ +run_logged $OMARCHY_INSTALL/post-install/hibernation.sh run_logged $OMARCHY_INSTALL/post-install/pacman.sh source $OMARCHY_INSTALL/post-install/allow-reboot.sh source $OMARCHY_INSTALL/post-install/finished.sh diff --git a/install/config/hibernation.sh b/install/post-install/hibernation.sh similarity index 100% rename from install/config/hibernation.sh rename to install/post-install/hibernation.sh