diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-01-11 05:51:01 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-01-11 05:51:01 +0100 |
commit | bd2c98f15b172aa36be1a6be383ab6a2ae97aa17 (patch) | |
tree | 9b652a879b0fa87de8fe707aa92293e255919021 /bashrc/common | |
parent | 4fb79ff9ccc2a1c3fe79931e4333e68cafb36dd9 (diff) | |
download | dotfiles-bd2c98f15b172aa36be1a6be383ab6a2ae97aa17.tar.gz dotfiles-bd2c98f15b172aa36be1a6be383ab6a2ae97aa17.tar.xz dotfiles-bd2c98f15b172aa36be1a6be383ab6a2ae97aa17.zip |
prompt: really fix spacing
Diffstat (limited to 'bashrc/common')
-rw-r--r-- | bashrc/common/prompt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc/common/prompt.sh b/bashrc/common/prompt.sh index ddb2679..fe2a139 100644 --- a/bashrc/common/prompt.sh +++ b/bashrc/common/prompt.sh @@ -16,9 +16,9 @@ __make_prompt() { [[ -z "$user" && -z "$host" ]] || host="${host} " if [[ $(id -u) -eq 0 ]]; then - PS1UH="$(pcolor lred)${user}${host}$(pcolor) " + PS1UH="$(pcolor lred)${user}${host}$(pcolor)" else - PS1UH="$(pcolor lgreen)${user}${host}$(pcolor) " + PS1UH="$(pcolor lgreen)${user}${host}$(pcolor)" fi # working directory |