Skip to content

Instantly share code, notes, and snippets.

@arnos-stuff
Last active December 12, 2022 19:40
Show Gist options
  • Save arnos-stuff/eddea8630152d96aa27e43922d2fdb46 to your computer and use it in GitHub Desktop.
Save arnos-stuff/eddea8630152d96aa27e43922d2fdb46 to your computer and use it in GitHub Desktop.
how to customize windows term without admin rights on your work laptop
# how to customize windows term without admin rights on your work laptop
## install windows terminal from MS Store (no admin rights)
## from: https://apps.microsoft.com/store/detail/windows-terminal/9N0DX20HK701
## install scoop
## from : https://scoop.sh/
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser # Optional: Needed to run a remote script the first time
irm get.scoop.sh | iex
## use scoop to install pshazz, low level prompt customizer, doesn't need admin right
## from : https://github.com/lukesampson/pshazz
scoop install pshazz
## set a theme
pshazz list
pshazz use babun
## if you want to customize your theme to work with python virtualenvs: https://github.com/lukesampson/pshazz/issues/120
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment