From 41677ad7e1dd5fb8f34cab32c68d2d081f75bdf1 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 19 Aug 2025 20:13:34 +0200 Subject: [PATCH] Force wifi to unblock when we go to set it up Wifi can sometimes get turned off by computers when running on low power or in some sleep modes --- bin/omarchy-menu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-menu b/bin/omarchy-menu index 5bc88dbd..d8fb1075 100755 --- a/bin/omarchy-menu +++ b/bin/omarchy-menu @@ -133,7 +133,7 @@ show_setup_menu() { case $(menu "Setup" "$options") in *Audio*) alacritty --class=Wiremix -e wiremix ;; - *Wifi*) alacritty --class=Impala -e impala ;; + *Wifi*) alacritty --class=Impala -e bash -c "rfkill unblock wifi; impala" ;; *Bluetooth*) blueberry ;; *Power*) show_setup_power_menu ;; *Monitors*) edit_in_nvim ~/.config/hypr/monitors.conf ;;