mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
nixos/bash: use simple prompt for dumb terminals
This commit is contained in:
parent
7b001ed68a
commit
7a9982d465
1 changed files with 8 additions and 6 deletions
|
@ -90,12 +90,14 @@ in
|
||||||
|
|
||||||
promptInit = mkOption {
|
promptInit = mkOption {
|
||||||
default = ''
|
default = ''
|
||||||
# Provide a nice prompt.
|
if test "$TERM" != "dumb"; then
|
||||||
PROMPT_COLOR="1;31m"
|
# Provide a nice prompt.
|
||||||
let $UID && PROMPT_COLOR="1;32m"
|
PROMPT_COLOR="1;31m"
|
||||||
PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] "
|
let $UID && PROMPT_COLOR="1;32m"
|
||||||
if test "$TERM" = "xterm"; then
|
PS1="\n\[\033[$PROMPT_COLOR\][\u@\h:\w]\\$\[\033[0m\] "
|
||||||
PS1="\[\033]2;\h:\u:\w\007\]$PS1"
|
if test "$TERM" = "xterm"; then
|
||||||
|
PS1="\[\033]2;\h:\u:\w\007\]$PS1"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue