diff --git a/README.md b/README.md index c2b6e98..7f70a66 100644 --- a/README.md +++ b/README.md @@ -10,5 +10,5 @@ Available package collections: ```powershell winget install Git.Git Microsoft.PowerShell git clone https://git.vofy.cz/vofy/winsetup.git -.\winsetup\winsetup.ps1 --collections classic,workstation,gaming,nvidia +.\winsetup\setup.ps1 -collections classic,workstation,gaming,nvidia ``` diff --git a/setup.ps1 b/setup.ps1 index cac5537..ada3c9c 100644 --- a/setup.ps1 +++ b/setup.ps1 @@ -11,6 +11,7 @@ $packages = @{ 'Microsoft.WindowsTerminal' 'RustDesk.RustDesk' '7zip.7zip' + 'GIMP.GIMP' ) "classic" = @('Google.Chrome') "workstation" = @( @@ -24,8 +25,14 @@ $packages = @{ 'Microsoft.VisualStudioCode' 'MartiCliment.UniGetUI' 'Mozilla.Thunderbird' + 'WireGuard.WireGuard' + 'Bitwarden.Bitwarden' + 'Mikrotik.Winbox' + ) + "gaming" = @( + 'Valve.Steam' + 'Discord.Discord' ) - "gaming" = @('Valve.Steam') "nvidia" = @('Nvidia.GeForceExperience') }