Skip to content

Commit

Permalink
Remove legacy --cask parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
michelegera committed Sep 26, 2023
1 parent 830333e commit 60546f2
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 37 deletions.
40 changes: 20 additions & 20 deletions src/os/installs/applications.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ cd "$(dirname "${BASH_SOURCE[0]}")" \

print_in_purple "\n Applications\n\n"

brew_install "1Password" "1password" "--cask"
brew_install "A Better Finder Rename" "a-better-finder-rename" "--cask"
brew_install "AppCleaner" "appcleaner" "--cask"
brew_install "Arq" "arq" "--cask"
brew_install "balenaEtcher" "balenaetcher" "--cask"
brew_install "Catch" "catch" "--cask"
brew_install "Google Drive" "google-drive" "--cask"
brew_install "Install Disk Creator" "install-disk-creator" "--cask"
brew_install "NordVPN" "nordvpn" "--cask"
brew_install "NTFS for Mac" "paragon-ntfs" "--cask"
brew_install "OrbStack" "orbstack" "--cask"
brew_install "Raycast" "raycast" "--cask"
brew_install "Spotify" "spotify" "--cask"
brew_install "Stats" "stats" "--cask"
brew_install "Steam" "steam" "--cask"
brew_install "The Unarchiver" "the-unarchiver" "--cask"
brew_install "Transmission" "transmission" "--cask"
brew_install "Transmit" "transmit" "--cask"
brew_install "VLC" "vlc" "--cask"
brew_install "WezTerm" "wezterm" "--cask"
brew_install "1Password" "1password"
brew_install "A Better Finder Rename" "a-better-finder-rename"
brew_install "AppCleaner" "appcleaner"
brew_install "Arq" "arq"
brew_install "balenaEtcher" "balenaetcher"
brew_install "Catch" "catch"
brew_install "Google Drive" "google-drive"
brew_install "Install Disk Creator" "install-disk-creator"
brew_install "NordVPN" "nordvpn"
brew_install "NTFS for Mac" "paragon-ntfs"
brew_install "OrbStack" "orbstack"
brew_install "Raycast" "raycast"
brew_install "Spotify" "spotify"
brew_install "Stats" "stats"
brew_install "Steam" "steam"
brew_install "The Unarchiver" "the-unarchiver"
brew_install "Transmission" "transmission"
brew_install "Transmit" "transmit"
brew_install "VLC" "vlc"
brew_install "WezTerm" "wezterm"
4 changes: 2 additions & 2 deletions src/os/installs/browsers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ print_in_purple "\n Browsers\n"

printf "\n"

brew_install "Chrome" "google-chrome" "--cask"
brew_install "Firefox" "firefox" "--cask"
brew_install "Chrome" "google-chrome"
brew_install "Firefox" "firefox"
10 changes: 5 additions & 5 deletions src/os/installs/communications.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ cd "$(dirname "${BASH_SOURCE[0]}")" \

print_in_purple "\n Communications\n\n"

brew_install "Discord" "discord" "--cask"
brew_install "Notion" "notion" "--cask"
brew_install "Slack" "slack" "--cask"
brew_install "Telegram Desktop" "telegram-desktop" "--cask"
brew_install "WhatsApp" "whatsapp" "--cask"
brew_install "Discord" "discord"
brew_install "Notion" "notion"
brew_install "Slack" "slack"
brew_install "Telegram Desktop" "telegram-desktop"
brew_install "WhatsApp" "whatsapp"
10 changes: 5 additions & 5 deletions src/os/installs/creative_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ brew_tap "homebrew/cask-versions"
brew_install "Affinity Designer v1" "affinity-designer1"
# TODO: Add Affinity Photo v1
# TODO: Add Affinity Publisher v1
brew_install "Figma" "figma" "--cask"
brew_install "Handbrake" "handbrake" "--cask"
brew_install "Kap" "kap" "--cask"
brew_install "Optimage" "optimage" "--cask"
brew_install "Pika" "pika" "--cask"
brew_install "Figma" "figma"
brew_install "Handbrake" "handbrake"
brew_install "Kap" "kap"
brew_install "Optimage" "optimage"
brew_install "Pika" "pika"
6 changes: 3 additions & 3 deletions src/os/installs/development.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ cd "$(dirname "${BASH_SOURCE[0]}")" \

print_in_purple "\n Development\n\n"

brew_install "Postico" "postico" "--cask"
brew_install "RapidAPI" "rapidapi" "--cask"
brew_install "Tower" "tower" "--cask"
brew_install "Postico" "postico"
brew_install "RapidAPI" "rapidapi"
brew_install "Tower" "tower"
2 changes: 1 addition & 1 deletion src/os/installs/system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ cd "$(dirname "${BASH_SOURCE[0]}")" \

print_in_purple "\n System\n\n"

brew_install "Logi Options +" "logi-options-plus" "--cask"
brew_install "Logi Options +" "logi-options-plus"
2 changes: 1 addition & 1 deletion src/os/installs/vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ install_plugin() {
print_in_purple "\n Visual Studio Code\n\n" :

# Install VSCode
brew_install "Visual Studio Code" "visual-studio-code" "--cask"
brew_install "Visual Studio Code" "visual-studio-code"

printf "\n"

Expand Down

0 comments on commit 60546f2

Please sign in to comment.