diff options
author | mail_redacted_for_web | 2023-05-06 10:48:41 +0200 |
---|---|---|
committer | mail_redacted_for_web | 2023-05-06 10:48:41 +0200 |
commit | 1fcad4f954973302e62b8dd99147e8209e1a75ff (patch) | |
tree | 8d3334bb55de80a7d4f87fe71b2d29959db593c0 /.bash/prompt.bash | |
parent | 6c6b1f1c7ae29bc5cda8982a99eb21836ab14d98 (diff) | |
download | dotfiles-1fcad4f954973302e62b8dd99147e8209e1a75ff.tar.bz2 |
fix: root colouring for Debian < 12v0.9.5
Diffstat (limited to '.bash/prompt.bash')
-rw-r--r-- | .bash/prompt.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash/prompt.bash b/.bash/prompt.bash index 314aa1b..a3b22c5 100644 --- a/.bash/prompt.bash +++ b/.bash/prompt.bash @@ -27,7 +27,7 @@ case "$MYUID" in if [ "$OSMAJVER" -ge 12 ];then FGC3="fgcolor 36";FGC2="fgtcolor 155 15 64" else - FGC3="fgcolor 38";FGC2="fgcolor 155 15 64" + FGC3="fgcolor 38";FGC2="fgtcolor 155 15 64" fi ;; arch) FGC2="fgcolor 24";FGC3="fgcolor 240";; |