Last active
May 22, 2023 23:07
-
-
Save vilmid/083a2ee252cd443cbb3632eacc2fc482 to your computer and use it in GitHub Desktop.
Install Apps Using Scoop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $apps_in_main_bucket = @( | |
| '7zip' | |
| 'act' | |
| 'bat' | |
| 'boxes' | |
| 'busybox' | |
| 'duf' | |
| 'dust' | |
| 'fd' | |
| 'fq' | |
| 'fselect' | |
| 'fzf' | |
| 'gauge' | |
| 'gh' | |
| 'ghq' | |
| 'git' | |
| 'graphviz' | |
| 'gsudo' | |
| 'hadolint' | |
| 'helix' | |
| 'jq' | |
| 'nvs' | |
| 'pandoc' | |
| 'poppler' | |
| 'pdftk' | |
| 'pyenv' | |
| 'rga' | |
| 'ripgrep' | |
| 's' | |
| 'sd' | |
| 'starship' | |
| 'tealdeer' | |
| 'watchexec' | |
| 'yq' | |
| ) | |
| scoop install @apps_in_main_bucket | |
| scoop bucket add extras | |
| $apps_in_extra_bucket = @( | |
| 'copyq' | |
| 'irfanview' | |
| 'slack' | |
| 'sumatrapdf' | |
| 'sysinternals' | |
| 'tabby' | |
| 'task' | |
| 'vcredist2022' | |
| ) | |
| scoop install @apps_in_extra_bucket | |
| scoop bucket add java | |
| $apps_in_java_bucket = @( | |
| 'openjdk' | |
| ) | |
| scoop install @apps_in_java_bucket |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $URI = 'https://gist.github.com/vilmid/083a2ee252cd443cbb3632eacc2fc482/raw/install.ps1' | |
| Invoke-Expression (New-Object System.Net.WebClient).DownloadString($URI) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment