From 96eed35b5193cc7d960aef1a377f84f94518e749 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Thu, 16 Oct 2025 11:27:14 -0400 Subject: [PATCH] Kickstart Walker service if it goes down --- bin/omarchy-launch-walker | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/omarchy-launch-walker b/bin/omarchy-launch-walker index e52f48d3..3f77c37f 100755 --- a/bin/omarchy-launch-walker +++ b/bin/omarchy-launch-walker @@ -5,4 +5,9 @@ if ! pgrep -x elephant > /dev/null; then setsid uwsm-app -- elephant & fi +# Ensure walker service is running +if ! pgrep -f "walker --gapplication-service" > /dev/null; then + setsid uwsm-app -- walker --gapplication-service & +fi + exec walker "$@"