winsetup/setup.ps1
2024-11-10 19:26:47 +01:00

45 lines
1.1 KiB
PowerShell

param (
[string[]]$collections
)
$packages = @{
"common" = @(
'TheDocumentFoundation.LibreOffice'
'Mozilla.Firefox'
'Microsoft.PowerShell'
'VideoLAN.VLC'
'Microsoft.WindowsTerminal'
'RustDesk.RustDesk'
'7zip.7zip'
)
"classic" = @('Google.Chrome')
"workstation" = @(
'FreeCAD.FreeCAD'
'Git.Git'
'gerardog.gsudo'
'Helix.Helix'
'Chocolatey.Chocolatey'
'KiCAD.KiCAD'
'Prusa3D.PrusaSlicer'
'Microsoft.VisualStudioCode'
'MartiCliment.UniGetUI'
'Mozilla.Thunderbird'
)
"gaming" = @('Valve.Steam')
"nvidia" = @('Nvidia.GeForceExperience')
}
$args += $packages["common"]
foreach ($collection in $collections) {
if ($packages.ContainsKey($collection)) {
$args += $packages[$collection]
} else {
Write-Host "Unknown collection: $collection" -ForegroundColor Yellow
}
}
Write-Host "Installed collections: $collections" -ForegroundColor Cyan
Write-Host "Installed packages: $args" -ForegroundColor Green
winget install @args