From a522a47f70265e429f72f78453194bbeacee6120 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 25 Nov 2025 11:37:48 +0100 Subject: [PATCH] Ensure walker is set to autostart and that elephant is running as a service after running omarchy-refresh-walker Closes #3609 --- bin/omarchy-refresh-walker | 4 ++++ bin/omarchy-restart-walker | 1 + 2 files changed, 5 insertions(+) diff --git a/bin/omarchy-refresh-walker b/bin/omarchy-refresh-walker index 04112a4d..e32e2fcb 100755 --- a/bin/omarchy-refresh-walker +++ b/bin/omarchy-refresh-walker @@ -1,5 +1,9 @@ #!/bin/bash +# Ensure walker is set to autostart +mkdir -p ~/.config/autostart/ +cp $OMARCHY_PATH/autostart/walker.desktop ~/.config/autostart/ + omarchy-refresh-config walker/config.toml omarchy-refresh-config elephant/calc.toml omarchy-refresh-config elephant/desktopapplications.toml diff --git a/bin/omarchy-restart-walker b/bin/omarchy-restart-walker index 5919c88f..b3886e18 100755 --- a/bin/omarchy-restart-walker +++ b/bin/omarchy-restart-walker @@ -16,6 +16,7 @@ if [[ $EUID -eq 0 ]]; then setsid walker --gapplication-service & " else + elephant service enable 2>/dev/null systemctl --user restart elephant.service setsid walker --gapplication-service & fi