From 3ce7ef7570fe1034496ef71072270e5d5b3f0750 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 11 Mar 2026 21:50:50 +0100 Subject: [PATCH] Fix lack of dropins on post-install setup --- bin/omarchy-hibernation-setup | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/omarchy-hibernation-setup b/bin/omarchy-hibernation-setup index 02669993..0ebca84f 100755 --- a/bin/omarchy-hibernation-setup +++ b/bin/omarchy-hibernation-setup @@ -76,6 +76,7 @@ if [[ ! -f $RESUME_DROP_IN ]]; then RESUME_OFFSET=$(sudo btrfs inspect-internal map-swapfile -r "$SWAP_FILE") sudo mkdir -p /etc/limine-entry-tool.d echo "KERNEL_CMDLINE[default]+=\" resume=$RESUME_DEVICE resume_offset=$RESUME_OFFSET\"" | sudo tee "$RESUME_DROP_IN" >/dev/null + sudo tee -a /etc/default/limine < "$RESUME_DROP_IN" >/dev/null fi # Use ACPI alarm for RTC wakeup on s2idle systems (needed for suspend-then-hibernate) @@ -85,6 +86,7 @@ if grep -q "\[s2idle\]" /sys/power/mem_sleep 2>/dev/null; then echo "Enabling ACPI RTC alarm for s2idle suspend" sudo mkdir -p /etc/limine-entry-tool.d echo 'KERNEL_CMDLINE[default]+=" rtc_cmos.use_acpi_alarm=1"' | sudo tee "$LIMINE_DROP_IN" >/dev/null + sudo tee -a /etc/default/limine < "$LIMINE_DROP_IN" >/dev/null fi fi