From b2074d2024cba4d8f6e5d08e368269eda2763254 Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Thu, 28 Apr 2022 07:34:15 -0500 Subject: [PATCH] rejiggered prompt output a bit --- shell/bashrc.d/04-prompt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/bashrc.d/04-prompt.sh b/shell/bashrc.d/04-prompt.sh index 2feee39..d2f20db 100644 --- a/shell/bashrc.d/04-prompt.sh +++ b/shell/bashrc.d/04-prompt.sh @@ -63,7 +63,7 @@ set_prompt() { else git_symbol= fi - PS1="\n$last_command_stats\[$GRAY\]$(whoami)@$(hostname)\[$RESET\] \[$BLUE\]\w\[$RESET\]$git_symbol\[$YELLOW\]$git_branch\[$RESET\]\n\[$prompt_color\]❯\[$RESET\] " + PS1="\n$last_command_stats\[$GRAY\]$(whoami)@$(hostname)\[$RESET\]\n\[$BLUE\]\w\[$RESET\]$git_symbol\[$YELLOW\]$git_branch\[$RESET\]\n\[$prompt_color\]❯\[$RESET\] " } trap 'last_command_timer' DEBUG