From 773b9bedb6bc6535d2f680c8fd4dc51df37da16f Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 12 Apr 2021 18:39:44 +0200 Subject: [PATCH] rofi: Fix powermenu hibernation Forgot to uncomment the actual hibernation command after debugging the powermenu last time. Now it actually does what it's supposed to again. --- rofi/.config/rofi/modes/powermenu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rofi/.config/rofi/modes/powermenu b/rofi/.config/rofi/modes/powermenu index 2ad8526..5e8d04f 100755 --- a/rofi/.config/rofi/modes/powermenu +++ b/rofi/.config/rofi/modes/powermenu @@ -68,7 +68,7 @@ case "$*" in "Suspend" | "$suspend_btn") if [ -n "$ROFI_POWERMENU_SUSPEND_CMD" ]; then eval "$ROFI_POWERMENU_SUSPEND_CMD"; else lockscreen rofi /dev/null 2>/dev/null & - # systemctl hibernate + systemctl hibernate fi ;; esac