Skip to content

Instantly share code, notes, and snippets.

@vilmid
Last active May 22, 2023 23:07
Show Gist options
  • Select an option

  • Save vilmid/083a2ee252cd443cbb3632eacc2fc482 to your computer and use it in GitHub Desktop.

Select an option

Save vilmid/083a2ee252cd443cbb3632eacc2fc482 to your computer and use it in GitHub Desktop.
Install Apps Using Scoop
$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
$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