From 41258a670e202658166c29b3fa4f6cc2cdccaff5 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Wed, 19 Mar 2025 23:42:32 +0000 Subject: [PATCH] [macos] Remove bundle ID --- macos/.config/shell-common/dock.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/macos/.config/shell-common/dock.sh b/macos/.config/shell-common/dock.sh index 714ced8..f0884d5 100644 --- a/macos/.config/shell-common/dock.sh +++ b/macos/.config/shell-common/dock.sh @@ -5,11 +5,10 @@ function update-dock() { app_name=$(echo "$entry" | cut -d $'\t' -f 1) app_path=$(echo "$entry" | cut -d $'\t' -f 2) app_type=$(echo "$entry" | cut -d $'\t' -f 3) - bundle_id=$(echo "$entry" | cut -d $'\t' -f 5) idx=$((idx+1)) - dockutil --no-restart -a "$app_path" -l "$bundle_id" > /dev/null 2>&1 + dockutil --no-restart -a "$app_path" > /dev/null 2>&1 if [ "$app_type" = "persisentApps" ]; then - dockutil --move "$app_name" -l "$bundle_id" -p $idx + dockutil --move "$app_name" -p $idx fi done < ~/.dotfiles/macos/.config/dockConfig.txt killall Dock