Skip to content

Commit

Permalink
Windows packages_install.ps1 - bugfix - quote strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-revay authored Oct 13, 2023
1 parent b935597 commit c6fa4c9
Showing 1 changed file with 45 additions and 45 deletions.
90 changes: 45 additions & 45 deletions Windows_10/packages_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,75 +22,75 @@ $ErrorActionPreference = "Stop"

$WINGET_PACKAGES = @(
# Web browsers
Mozilla.Firefox
Google.Chrome
'Mozilla.Firefox'
'Google.Chrome'

# Utils
VMware.WorkstationPlayer # broken
WinDirStat.WinDirStat
Docker.DockerDesktop
XAMPPRocky.tokei # broken?
7zip.7zip
Ookla.Speedtest.Desktop
AltSnap.AltSnap
'VMware.WorkstationPlayer' # broken
'WinDirStat.WinDirStat'
'Docker.DockerDesktop'
'XAMPPRocky.tokei' # broken?
'7zip.7zip'
'Ookla.Speedtest.Desktop'
'AltSnap.AltSnap'
# TODO add relevant sysinternals packages (see `winget search sysinternals`)


# Version controll
GitHub.cli
Git.Git
GitHub.GitHubDesktop
GitExtensionsTeam.GitExtensions
o2sh.onefetch
'GitHub.cli'
'Git.Git'
'GitHub.GitHubDesktop'
'GitExtensionsTeam.GitExtensions'
'o2sh.onefetch'

# Drivers and HW support
Logitech.OptionsPlus
'Logitech.OptionsPlus'

# Code editors
Microsoft.VisualStudioCode
Neovim.Neovim
Helix.Helix
'Microsoft.VisualStudioCode'
'Neovim.Neovim'
'Helix.Helix'

# Terminal emulators
Microsoft.WindowsTerminal
Maximus5.ConEmu
Eugeny.Tabby
Alacritty.Alacritty
'Microsoft.WindowsTerminal'
'Maximus5.ConEmu'
'Eugeny.Tabby'
'Alacritty.Alacritty'

# compilers, build tools and interpreters
Python.Python.3.12
LLVM.LLVM
JFrog.Conan
Kitware.CMake
Ninja-build.Ninja
'Python.Python.3.12'
'LLVM.LLVM'
'JFrog.Conan'
'Kitware.CMake'
'Ninja-build.Ninja'

# Office work
Adobe.Acrobat.Reader.64-bit
TrackerSoftware.PDF-XChangeEditor
KDE.Okular
TheDocumentFoundation.LibreOffice
Amazon.Kindle
Grammarly.Grammarly
calibre.calibre
'Adobe.Acrobat.Reader.64-bit'
'TrackerSoftware.PDF-XChangeEditor'
'KDE.Okular'
'TheDocumentFoundation.LibreOffice'
'Amazon.Kindle'
'Grammarly.Grammarly'
'calibre.calibre'

# Desktop environment extensions and tools
Microsoft.PowerToys
AutoHotkey.AutoHotkey
'Microsoft.PowerToys'
'AutoHotkey.AutoHotkey'

# Messaging and videoconferencing apps
OpenWhisperSystems.Signal
WhatsApp.WhatsApp # broken
Zoom.Zoom # broken
Facebook.Messenger # broken
Spotify.Spotify # broken
'OpenWhisperSystems.Signal'
'WhatsApp.WhatsApp' # broken
'Zoom.Zoom' # broken
'Facebook.Messenger' # broken
'Spotify.Spotify' # broken

# Multimedia
GIMP.GIMP
IrfanSkiljan.IrfanView
Audacity.Audacity
'GIMP.GIMP'
'IrfanSkiljan.IrfanView'
'Audacity.Audacity'

# Productivity
Doist.Todoist
'Doist.Todoist'
)

# TODO split to multiple lines
Expand Down

0 comments on commit c6fa4c9

Please sign in to comment.