Skip to content

Instantly share code, notes, and snippets.

@timdeschryver
Created July 1, 2022 17:23
Show Gist options
  • Save timdeschryver/c78c02750f068a8d8154d9d60b070ffa to your computer and use it in GitHub Desktop.
Save timdeschryver/c78c02750f068a8d8154d9d60b070ffa to your computer and use it in GitHub Desktop.
Random Oh My Posh Theme
$Themes = "C:\Users\{user}\AppData\Local\Programs\oh-my-posh\themes\"
$RandomTheme = Get-ChildItem $Themes -name | Select-Object -index $(Random $((Get-ChildItem $Themes).Count))
oh-my-posh init pwsh --config "$Themes\$RandomTheme" | Invoke-Expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment