Refactor Oh My Posh customization

This commit is contained in:
Manuel Thalmann 2023-07-27 03:07:24 +02:00
parent bb28dadc16
commit 8b4082e6e1

View file

@ -148,9 +148,14 @@ function Restore-PersonalApps([Context] $context) {
nvs link latest;
# Terminal
$profileRoots = @($PROFILE, (powershell -c '$PROFILE')) | ForEach-Object { Split-Path -Parent $_; };
$profileRoots | ForEach-Object { Remove-Item "$_/profile.d/*Oh My Posh*.ps1"; };
$context.AddPowerShellProfileStatement($false, "999_Oh My Posh", "oh-my-posh init pwsh --config ~/Nextcloud/.omp/manuel.omp.json | Invoke-Expression");
@($PROFILE, (powershell -c '$PROFILE')) | ForEach-Object {
Get-Item "$(Split-Path -Parent $_)/profile.d/*Oh My Posh*";
} | ForEach-Object {
Get-Content $_ | ForEach-Object {
$indicator = "oh-my-posh init";
$_ -replace $indicator,"$indicator --config ~/Nextcloud/.omp/manuel.omp.json";
} | Set-Content $_;
}
# Gaming
choco install -y goggalaxy;