From 5de2b953c9f41abd87b40610666ca6c98f9ac613 Mon Sep 17 00:00:00 2001 From: Julian Scharrenbach Date: Fri, 20 Mar 2026 10:10:15 +0100 Subject: [PATCH] change hostname from grey to black --- .bashrc | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.bashrc b/.bashrc index 0e35847..23b2f6e 100644 --- a/.bashrc +++ b/.bashrc @@ -83,17 +83,18 @@ parse_git_branch() { F_RESET="\[\033[00m\]" # Colors for user -U_USER="\[\033[38;5;3m\]" # Gelb/Orange -U_PWD="\[\033[38;5;39m\]" # Angenehmes Himmelblau (hier ändern!) +U_USER="\[\033[38;5;3m\]" # Gelb/Orange +U_PWD="\[\033[38;5;39m\]" # soothing sky-blue # Colors for Root -R_USER="\[\033[1;31m\]" # Fett, Rot (wichtig!) -R_PWD="\[\033[38;5;203m\]" # Sanfteres Lachsrosa (hier ändern!) +R_USER="\[\033[1;31m\]" # bold, red (important!) +R_PWD="\[\033[38;5;203m\]" # smooth salmon-rose # Common colors -C_HOST="\[\033[38;5;7m\]" # Hellgrau -C_GIT="\[\033[38;5;15m\]" # Weiß -C_CHAR="\[\033[38;5;15m\]" # Weiß (für Doppelpunkt) +#C_HOST="\[\033[38;5;7m\]" # Light Grey +C_HOST="\[\033[38;5;0m\]" # Black +C_GIT="\[\033[38;5;15m\]" # White +C_CHAR="\[\033[38;5;15m\]" # White (for colon) # --- 2. Logic and Prompt-Composition ---