Add personal apps
This commit is contained in:
parent
a46a59f57c
commit
1fc49588fc
1 changed files with 54 additions and 4 deletions
|
@ -48,7 +48,16 @@ function Restore-PersonalApps([Context] $context) {
|
||||||
|
|
||||||
# Social Media
|
# Social Media
|
||||||
choco install -y `
|
choco install -y `
|
||||||
threema-desktop;
|
threema-desktop `
|
||||||
|
discord `
|
||||||
|
element-desktop `
|
||||||
|
signal `
|
||||||
|
teamspeak;
|
||||||
|
|
||||||
|
# Browsing
|
||||||
|
winget install --accept-source-agreements --accept-package-agreements -e --id Brave.Brave;
|
||||||
|
winget install --accept-source-agreements --accept-package-agreements -e --id Brave.Brave.Beta;
|
||||||
|
winget install --accept-source-agreements --accept-package-agreements -e --id Brave.Brave.Nightly;
|
||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
choco install -y `
|
choco install -y `
|
||||||
|
@ -57,21 +66,62 @@ function Restore-PersonalApps([Context] $context) {
|
||||||
bitwarden `
|
bitwarden `
|
||||||
keepass `
|
keepass `
|
||||||
gimp `
|
gimp `
|
||||||
gpu-z;
|
gpu-z `
|
||||||
|
windirstat `
|
||||||
|
winmerge `
|
||||||
|
winscp `
|
||||||
|
xmedia-recode `
|
||||||
|
hwmonitor `
|
||||||
|
qbittorrent `
|
||||||
|
imgburn `
|
||||||
|
inkscape `
|
||||||
|
krita `
|
||||||
|
mremoteng `
|
||||||
|
obs-studio `
|
||||||
|
openvpn `
|
||||||
|
ubiquiti-unifi-controller;
|
||||||
|
|
||||||
|
winget install --accept-source-agreements --accept-package-agreements -e --id AppWork.JDownloader
|
||||||
|
|
||||||
# Media
|
# Media
|
||||||
choco install -y k-litecodecpackmega;
|
choco install -y k-litecodecpackmega;
|
||||||
|
winget install --accept-source-agreements --accept-package-agreements -e --id Ytmdesktop.Ytmdesktop
|
||||||
|
|
||||||
# Coding
|
# Coding
|
||||||
choco install -y --params "/NoDesktopIcon" vscode vscode-insiders;
|
choco install -y --params "/NoDesktopIcon" vscode vscode-insiders;
|
||||||
choco install -y --params "/NoDesktopIcon /AssociateWithFiles" vscodium;
|
choco install -y --params "/NoDesktopIcon /AssociateWithFiles" vscodium;
|
||||||
winget install --scope machine --accept-source-agreements --accept-package-agreements -e --id VSCodium.VSCodium.Insiders --override '/VerySilent /MergeTasks="!runCode,quicklaunchicon,addcontextmenufiles,addcontextmenufolders,associatewithfiles,addtopath"';
|
winget install --scope machine --accept-source-agreements --accept-package-agreements -e --id VSCodium.VSCodium.Insiders --override '/VerySilent /MergeTasks="!runCode,quicklaunchicon,addcontextmenufiles,addcontextmenufolders,associatewithfiles,addtopath"';
|
||||||
|
|
||||||
choco install -y HxD;
|
choco install -y
|
||||||
|
HxD `
|
||||||
|
docker-desktop `
|
||||||
|
gh `
|
||||||
|
github-desktop `
|
||||||
|
ida-free `
|
||||||
|
imhex `
|
||||||
|
dotpeek;
|
||||||
|
|
||||||
|
choco install -y
|
||||||
|
nvs `
|
||||||
|
python `
|
||||||
|
visualstudio2019-workload-vctools;
|
||||||
|
|
||||||
|
nvs add latest;
|
||||||
|
nvs link latest;
|
||||||
|
|
||||||
# Gaming
|
# Gaming
|
||||||
choco install -y goggalaxy;
|
choco install -y goggalaxy;
|
||||||
choco install -y epicgameslauncher steam;
|
|
||||||
|
choco install -y `
|
||||||
|
epicgameslauncher `
|
||||||
|
steam `
|
||||||
|
ubisoft-connect `
|
||||||
|
Origin `
|
||||||
|
ea-app;
|
||||||
|
|
||||||
|
# Emulation
|
||||||
|
choco install -y `
|
||||||
|
ppsspp;
|
||||||
|
|
||||||
$context.RemoveDesktopIcon("*Epic Games*");
|
$context.RemoveDesktopIcon("*Epic Games*");
|
||||||
$context.RemoveDesktopIcon("*Steam*");
|
$context.RemoveDesktopIcon("*Steam*");
|
||||||
|
|
Loading…
Reference in a new issue