From c5cecf99917b27f69900a2d6c6e564c33028a7b4 Mon Sep 17 00:00:00 2001 From: srdusr Date: Tue, 23 Sep 2025 21:40:49 +0200 Subject: Minor fixes --- common/packages.yml | 104 ++++++++++++++++++++++++++-- windows/Documents/PowerShell/initialize.ps1 | 4 +- 2 files changed, 102 insertions(+), 6 deletions(-) diff --git a/common/packages.yml b/common/packages.yml index a0f7d2f..0fce986 100644 --- a/common/packages.yml +++ b/common/packages.yml @@ -424,17 +424,113 @@ macos: - ansible windows: - # Chocolatey/Scoop/Winget packages - git - ripgrep - fd + - sudo + - win32yank - microsoft-windows-terminal + - wsl + - firefox + - setdefaultbrowser - nodejs + - bat + - 7zip - python + - javaruntime + - autohotkey + - bitwarden + - notepadplusplus - neovim - - vscode - - firefox - - 7zip + +bloatware: + # - Anytime + - BioEnrollment + # - Browser + - ContactSupport + - Cortana + # - Defender + - Feedback + - Flash + # - Gaming # Breaks Xbox Live Account Login + # - Holo + # - InternetExplorer + - Maps + # - MiracastView + - OneDrive + # - SecHealthUI + - Wallet + # - Xbox # Causes a bootloop since upgrade 1511? + +default: + # default Windows 10 apps + # - Microsoft.3DBuilder + - Microsoft.Appconnector + - Microsoft.BingFinance + - Microsoft.BingNews + - Microsoft.BingSports + - Microsoft.BingTranslator + - Microsoft.BingWeather + # - Microsoft.FreshPaint + # - Microsoft.Microsoft3DViewer + - Microsoft.MicrosoftOfficeHub + - Microsoft.MicrosoftSolitaireCollection + - Microsoft.MicrosoftPowerBIForWindows + - Microsoft.MinecraftUWP + # - Microsoft.MicrosoftStickyNotes + # - Microsoft.NetworkSpeedTest + - Microsoft.Office.OneNote + # - Microsoft.OneConnect + - Microsoft.People + # - Microsoft.Print3D + - Microsoft.SkypeApp + - Microsoft.Wallet + # - Microsoft.Windows.Photos + # - Microsoft.WindowsAlarms + # - Microsoft.WindowsCalculator + - Microsoft.WindowsCamera + - microsoft.windowscommunicationsapps + - Microsoft.WindowsMaps + - Microsoft.WindowsPhone + - Microsoft.WindowsSoundRecorder + - Microsoft.WindowsStore + # - Microsoft.XboxApp + # - Microsoft.XboxGameOverlay + # - Microsoft.XboxIdentityProvider + # - Microsoft.XboxSpeechToTextOverlay + - Microsoft.ZuneMusic + - Microsoft.ZuneVideo + + # Threshold 2 apps + - Microsoft.CommsPhone + - Microsoft.ConnectivityStore + - Microsoft.GetHelp + - Microsoft.Getstarted + - Microsoft.Messaging + - Microsoft.Office.Sway + - Microsoft.OneConnect + - Microsoft.WindowsFeedbackHub + + # Redstone apps + - Microsoft.BingFoodAndDrink + - Microsoft.BingTravel + - Microsoft.BingHealthAndFitness + - Microsoft.WindowsReadingList + + # non-Microsoft + - king.com.CandyCrushSaga + - king.com.CandyCrushSodaSaga + - king.com.* + - Facebook.Facebook + + # apps which cannot be removed using Remove-AppxPackage + # - Microsoft.BioEnrollment + # - Microsoft.MicrosoftEdge + # - Microsoft.Windows.Cortana + # - Microsoft.WindowsFeedback + # - Microsoft.XboxGameCallableUI + # - Microsoft.XboxIdentityProvider + # - Windows.ContactSupport #====================================== # Gentoo USE flags configuration diff --git a/windows/Documents/PowerShell/initialize.ps1 b/windows/Documents/PowerShell/initialize.ps1 index a616998..72f0ea4 100644 --- a/windows/Documents/PowerShell/initialize.ps1 +++ b/windows/Documents/PowerShell/initialize.ps1 @@ -5,7 +5,7 @@ .DESCRIPTION To bootstrap directly from GitHub, run these 2 cmdlets in a PowerShell prompt: > Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force - > irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/bootstrap.ps1' | iex + > irm 'https://raw.githubusercontent.com/srdusr/dotfiles/main/windows/Documents/PowerShell/bootstrap.ps1' | iex #> [CmdletBinding()] param ( @@ -202,7 +202,7 @@ function main { return } - $script = (Join-Path $dotPath '.config\powershell\bootstrap.ps1') + $script = (Join-Path $dotPath 'Documents\PowerShell\bootstrap.ps1') Write-Host "Continue $script in child process" Start-Process -PassThru -NoNewWindow -FilePath "powershell.exe" -ArgumentList "-NoProfile -File $script setup" | Wait-Process } -- cgit v1.2.3