alias:
  - name: totsch
    value: git
env:
  - name: POSH_THEME
    value: '{{ if eq .OS "windows" }}{{ .Home }}/Nextcloud/.omp{{ else }}/usr/local/share/oh-my-posh/themes{{ end }}/manuel.omp.json'
path: []
script:
  - value: |
      # Profile Files
      $profileRoot = Split-Path -Parent $PROFILE;
      $profilePaths = @(
          "$profileRoot/conf.d/*.ps1",
          "{{ if eq .OS "windows"  }}$env:ProgramData{{ else }}/etc{{ end }}/powershell/conf.d/*.ps1"
      );

      foreach ($profilePath in $profilePaths) {
          if (Test-Path $profilePath) {
              Get-Item $profilePath | ForEach-Object { . $_; };
          }
      }
    if: match .Shell "pwsh"