Skip to content

Commit

Permalink
🚜 Changes rich output color
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed Sep 16, 2024
1 parent f0f270e commit 5cced21
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions home/.justfiles/virtualenvwrapper.justfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,24 @@ postrmvirtualenv:
preactivate:
#!/usr/bin/env sh
# VIRTUAL_ENV_NAME=$(basename "${VIRTUAL_ENV}")
uvx --quiet rich --print "[green]preactivate[/green]"
uvx --quiet rich --print "[yellow]preactivate[/yellow]"

predeactivate:
#!/usr/bin/env sh
uvx --quiet rich --print "[green]predeactivate[/green]"
uvx --quiet rich --print "[yellow]predeactivate[/yellow]"

premkproject:
#!/usr/bin/env sh
uvx --quiet rich --print "[green]premkproject[/green]"
uvx --quiet rich --print "[yellow]premkproject[/yellow]"

premkvirtualenv:
#!/usr/bin/env sh
uvx --quiet rich --print "[green]premkvirtualenv[/green]"
uvx --quiet rich --print "[yellow]premkvirtualenv[/yellow]"

prermproject:
#!/usr/bin/env sh
uvx --quiet rich --print "[green]prermproject[/green]"
uvx --quiet rich --print "[yellow]prermproject[/yellow]"

prermvirtualenv:
#!/usr/bin/env sh
uvx --quiet rich --print "[green]prermvirtualenv[/green]"
uvx --quiet rich --print "[yellow]prermvirtualenv[/yellow]"

0 comments on commit 5cced21

Please sign in to comment.