From e313747e2ce65fdec63b3e412e29eb9afdc0cac0 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 19 Mar 2025 23:37:38 +0000 Subject: [PATCH] [macos] Fix update dock command --- macos/.config/shell-common/dock.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/.config/shell-common/dock.sh b/macos/.config/shell-common/dock.sh index 7fc4f03..f0884d5 100644 --- a/macos/.config/shell-common/dock.sh +++ b/macos/.config/shell-common/dock.sh @@ -6,7 +6,7 @@ function update-dock() { app_path=$(echo "$entry" | cut -d $'\t' -f 2) app_type=$(echo "$entry" | cut -d $'\t' -f 3) idx=$((idx+1)) - dockutil --no-restart -a "$(urldecode "$app_path")" > /dev/null 2>&1 + dockutil --no-restart -a "$app_path" > /dev/null 2>&1 if [ "$app_type" = "persisentApps" ]; then dockutil --move "$app_name" -p $idx fi