2023-06-20 20:57:37 +02:00
|
|
|
# PS1
|
|
|
|
if [ "$(id -u)" -eq 0 ]; then
|
|
|
|
ps1_color_1=1
|
|
|
|
ps1_color_2=10
|
|
|
|
else
|
|
|
|
ps1_color_1=6
|
|
|
|
ps1_color_2=4
|
|
|
|
fi
|
|
|
|
export PS1="{\[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;${ps1_color_1}m\]\u@\h\[$(tput sgr0)\] \[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;${ps1_color_2}m\]\W\[$(tput sgr0)\]}\\$ \[$(tput sgr0)\]"
|
|
|
|
|
2023-06-20 21:17:38 +02:00
|
|
|
export SYSTEMD_PAGER=
|
|
|
|
|