Add install.ps1

This commit is contained in:
matthieu 2026-01-27 21:04:39 -05:00
parent 91cd4c91f4
commit e9892a6f23

27
install.ps1 Normal file
View file

@ -0,0 +1,27 @@
$apps = @(
"LibreWolf.LibreWolf",
"ImputNet.Helium",
"Google.Chrome",
"VideoLAN.VLC",
"mpv.net",
"ZedIndustries.Zed",
"Microsoft.PowerToys",
"Microsoft.VisualStudioCode",
"7zip.7zip",
"Git.Git",
"Notepad++.Notepad++",
"voidtools.Everything",
"Inkscape.Inkscape",
"OBSProject.OBSStudio",
"Valve.Steam",
"Microsoft.PowerShell",
"WinSCP.WinSCP",
"MartiCliment.UniGetUI",
"Microsoft.WindowsTerminal",
"Tailscale.Tailscale",
"Inkscape.Inkscape",
"RustDesk.RustDesk",
"",
)
$apps | ForEach-Object { winget install --id $_ --exact --accept-source-agreements --accept-package-agreements }