Skip to content

Instantly share code, notes, and snippets.

@vilmid
Last active March 11, 2023 02:07
Show Gist options
  • Select an option

  • Save vilmid/084a27ab5063ee6a17f8ba72e37f1868 to your computer and use it in GitHub Desktop.

Select an option

Save vilmid/084a27ab5063ee6a17f8ba72e37f1868 to your computer and use it in GitHub Desktop.
$apps_in_main_bucket = @(
'exiftool'
'ffmpeg'
'gallery-dl'
'imagemagick'
'lame'
'youtube-dl'
)
scoop install @apps_in_main_bucket
scoop bucket add extras
$apps_in_extra_bucket = @(
'aimp'
'blender'
'mpv'
'musescore'
'obs-studio'
'spytify'
'shotcut'
)
scoop install @apps_in_extra_bucket
$URI = 'https://gist.github.com/vilmid/084a27ab5063ee6a17f8ba72e37f1868/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