From 2c1a761b88c372e0e07bb7c0a2f85edd32226d8d Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 19 Nov 2025 11:42:01 +0100 Subject: [PATCH] Walker is not run as a systemd service --- bin/omarchy-restart-walker | 4 ++-- migrations/1762873545.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/omarchy-restart-walker b/bin/omarchy-restart-walker index d888fa03..5919c88f 100755 --- a/bin/omarchy-restart-walker +++ b/bin/omarchy-restart-walker @@ -13,9 +13,9 @@ if [[ $EUID -eq 0 ]]; then systemd-run --uid="$SCRIPT_OWNER" --setenv=XDG_RUNTIME_DIR="/run/user/$USER_UID" \ bash -c " systemctl --user restart elephant.service - systemctl --user restart app-walker@autostart.service + setsid walker --gapplication-service & " else systemctl --user restart elephant.service - systemctl --user restart app-walker@autostart.service + setsid walker --gapplication-service & fi diff --git a/migrations/1762873545.sh b/migrations/1762873545.sh index c563897f..6433a8ef 100644 --- a/migrations/1762873545.sh +++ b/migrations/1762873545.sh @@ -5,4 +5,4 @@ systemctl --user start elephant.service pkill walker mkdir -p ~/.config/autostart/ cp $OMARCHY_PATH/autostart/walker.desktop ~/.config/autostart/ -systemctl --user start app-walker@autostart.service +setsid walker --gapplication-service &