From 2c430ed608668aac0f91042df824542cc1c8fb3b Mon Sep 17 00:00:00 2001 From: Andrei Murariu Date: Tue, 3 Feb 2026 15:11:13 +0200 Subject: [PATCH] bug-fix: add hardcoded directories for raycast removal --- lib/core/app_protection.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/core/app_protection.sh b/lib/core/app_protection.sh index bb93abe..d53c837 100755 --- a/lib/core/app_protection.sh +++ b/lib/core/app_protection.sh @@ -1104,6 +1104,8 @@ find_app_files() { files_to_clean+=("$p") done < <(command find "$parent" -maxdepth 1 -type d -iname "*raycast*" -print0 2> /dev/null) done + [[ -d "$HOME/Library/Containers/com.raycast.macos.BrowserExtension" ]] && files_to_clean+=("$HOME/Library/Containers/com.raycast.macos.BrowserExtension") + [[ -d "$HOME/Library/Containers/com.raycast.macos.RaycastAppIntents" ]] && files_to_clean+=("$HOME/Library/Containers/com.raycast.macos.RaycastAppIntents") if [[ -d "$HOME/Library/Caches" ]]; then while IFS= read -r -d '' p; do files_to_clean+=("$p")