Add homebrew cask apps

This commit is contained in:
Yan Lin 2025-08-28 17:20:18 +02:00
parent 2a2e053d62
commit 7e654c5ce5
2 changed files with 7 additions and 4 deletions

View file

@ -14,8 +14,13 @@
# Example: "wget" # Example: "wget"
]; ];
casks = [ casks = [
# GUI applications go here # GUI applications - manually installed apps now managed by Homebrew
# Example: "google-chrome" "inkscape"
"firefox"
"obsidian"
"snipaste"
"ghostty"
"slidepilot"
]; ];
taps = [ taps = [
# Additional repositories if needed # Additional repositories if needed

View file

@ -113,8 +113,6 @@ in
app_path=$( (find -L /Applications -name "*.app" -maxdepth 2 2>/dev/null; \ app_path=$( (find -L /Applications -name "*.app" -maxdepth 2 2>/dev/null; \
find -L ~/Applications -name "*.app" -maxdepth 3 2>/dev/null; \ find -L ~/Applications -name "*.app" -maxdepth 3 2>/dev/null; \
find -L /opt/homebrew/Caskroom -name "*.app" -maxdepth 3 2>/dev/null; \
find -L /usr/local/Caskroom -name "*.app" -maxdepth 3 2>/dev/null; \
find /System/Applications -name "*.app" -maxdepth 2 2>/dev/null; \ find /System/Applications -name "*.app" -maxdepth 2 2>/dev/null; \
find /System/Applications/Utilities -name "*.app" -maxdepth 1 2>/dev/null) | find /System/Applications/Utilities -name "*.app" -maxdepth 1 2>/dev/null) |
sort | uniq | sort | uniq |