diff --git a/requirements.ps1 b/requirements.ps1 index 03a3166..656f745 100644 --- a/requirements.ps1 +++ b/requirements.ps1 @@ -1,16 +1,24 @@ # Install requirements via winget -winget install gnupg.gpg4win -winget install microsoft.teams -winget install putty.putty -winget install microsoft.windowsterminal -winget install git.git -winget install mozilla.firefox -winget install Microsoft.VisualStudio.2022.Community -winget install jandedobbeleer.ohmyposh -winget install IJHack.QtPass -winget install Microsoft.powertoys -winget install google.chrome +$packages = @( + "gnupg.gpg4win", + "microsoft.teams", + "putty.putty", + "microsoft.windowsterminal", + "git.git", + "mozilla.firefox", + "Microsoft.VisualStudio.2022.Community", + "jandedobbeleer.ohmyposh", + "IJHack.QtPass", + "Microsoft.powertoys", + "google.chrome", + "spotify.spotify" +) + +# Iterate through each package and install it +foreach ($package in $packages) { + winget install $package +} # Install mini driver for yubikey # Follow dr duhs yubikey guide for setting up gpg agent and trusting certificate