Skip to content
This repository was archived by the owner on Jan 10, 2024. It is now read-only.

Commit ebefee8

Browse files
author
Roman
committed
make winget calls more readable
1 parent b3ab9e5 commit ebefee8

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

main.ps1

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -189,73 +189,73 @@ do {
189189
# Browsers
190190

191191
"Firefox" {
192-
winget install -e --id Mozilla.Firefox
192+
winget install Mozilla.Firefox
193193
}
194194

195195
"Google Chrome" {
196-
winget install -e --id Google.Chrome
196+
winget install Google.Chrome
197197
}
198198

199199
"Brave" {
200-
winget install -e --id BraveSoftware.BraveBrowser
200+
winget install BraveSoftware.BraveBrowser
201201
}
202202

203203
"Vivaldi" {
204-
winget install -e --id VivaldiTechnologies.Vivaldi
204+
winget install VivaldiTechnologies.Vivaldi
205205
}
206206

207207
# Dev Tools
208208

209209
"Visual Studio Code" {
210-
winget install -e --id Microsoft.VisualStudioCode
210+
winget install Microsoft.VisualStudioCode
211211
}
212212

213213
"Atom" {
214-
winget install -e --id GitHub.Atom
214+
winget install GitHub.Atom
215215
}
216216

217217
"Notepad++" {
218-
winget install -e --id Notepad++.Notepad++
218+
winget install Notepad++.Notepad++
219219
}
220220

221221
"Github Desktop" {
222-
winget install -e --id GitHub.GitHubDesktop
222+
winget install GitHub.GitHubDesktop
223223
}
224224

225225
"Github CLI" {
226-
winget install -e --id GitHub.cli
226+
winget install GitHub.cli
227227
}
228228

229229
"Git" {
230-
winget install -e --id Git.Git
230+
winget install Git.Git
231231
}
232232

233233
"JRE 8" {
234-
winget install -e --id Oracle.JavaRuntimeEnvironment
234+
winget install Oracle.JavaRuntimeEnvironment
235235
}
236236

237237
"Python 3" {
238-
winget install -e --id Python.Python.3
238+
winget install Python.Python.3
239239
}
240240

241241
"Python 2" {
242-
winget install -e --id Python.Python.2
242+
winget install Python.Python.2
243243
}
244244

245245
"PuTTY" {
246-
winget install -e --id PuTTY.PuTTY
246+
winget install PuTTY.PuTTY
247247
}
248248

249249
"Node.JS" {
250-
winget install -e --id OpenJS.Nodejs
250+
winget install OpenJS.Nodejs
251251
}
252252

253253
"Vim" {
254-
winget install -e --id vim.vim
254+
winget install vim.vim
255255
}
256256

257257
"Docker" {
258-
winget install -e --id Docker.DockerDesktop
258+
winget install Docker.DockerDesktop
259259
}
260260

261261
"Windows Subsystem for Linux" {
@@ -269,43 +269,43 @@ do {
269269
# Communication Menu
270270

271271
"Discord" {
272-
winget install -e --id Discord.Discord
272+
winget install Discord.Discord
273273
}
274274

275275
"Slack" {
276-
winget install -e --id SlackTechnologies.Slack
276+
winget install SlackTechnologies.Slack
277277
}
278278

279279
"Zoom" {
280-
winget install -e --id Zoom.Zoom
280+
winget install Zoom.Zoom
281281
}
282282

283283
"Skype" {
284-
winget install -e --id Microsoft.Skype
284+
winget install Microsoft.Skype
285285
}
286286

287287
# Gaming stuff
288288

289289
"Steam" {
290-
winget install -e --id Valve.Steam
290+
winget install Valve.Steam
291291
}
292292

293293
"OBS Studio" {
294-
winget install -e --id OBSProject.OBSStudio
294+
winget install OBSProject.OBSStudio
295295
}
296296

297297
# Multimedia
298298

299299
"iTunes" {
300-
winget install -e --id Apple.iTunes
300+
winget install Apple.iTunes
301301
}
302302

303303
"Spotify" {
304-
winget install -e --id Spotify.Spotify
304+
winget install Spotify.Spotify
305305
}
306306

307307
"VLC" {
308-
winget install -e --id VideoLAN.VLC
308+
winget install VideoLAN.VLC
309309
}
310310

311311
#Tweaks

0 commit comments

Comments
 (0)