From 0b1607786da746131dc0048d2a8f2a9ec95059b7 Mon Sep 17 00:00:00 2001 From: Andrii Furmanets Date: Thu, 30 Apr 2026 21:14:29 +0300 Subject: [PATCH] Restart Walker after removing web apps (#5513) --- bin/omarchy-webapp-remove | 2 ++ bin/omarchy-webapp-remove-all | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bin/omarchy-webapp-remove b/bin/omarchy-webapp-remove index a54aba5c..54f46aa5 100755 --- a/bin/omarchy-webapp-remove +++ b/bin/omarchy-webapp-remove @@ -41,3 +41,5 @@ for APP_NAME in "${APP_NAMES[@]}"; do rm -f "$ICON_DIR/$APP_NAME.png" echo "Removed $APP_NAME" done + +omarchy-restart-walker diff --git a/bin/omarchy-webapp-remove-all b/bin/omarchy-webapp-remove-all index d2006abc..5b431ad2 100755 --- a/bin/omarchy-webapp-remove-all +++ b/bin/omarchy-webapp-remove-all @@ -33,4 +33,6 @@ if command -v update-desktop-database &>/dev/null; then update-desktop-database "$APP_DIR" &>/dev/null || true fi +omarchy-restart-walker + echo "Web apps removed successfully."