Dotfiles config update (2022-05-26)

This commit is contained in:
q3aql 2022-05-26 14:12:31 +02:00
parent ad97690a55
commit bddba47d5f

13
scripts/arch.theme.bash Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac
if [ "$color_prompt" = yes ]; then
PS1="\n\[\033[01;36m\] \D{%Y-%m-%d} \t\[\033[00m\] \[\033[00;31m\]>\[\033[00m\] \[\033[00;35m\]\u@\h\[\033[00m\] > \[\033[00;32m\]\w\n\[\033[00m\]\[\033[00;36m\] \[\033[00m\] \[\033[00;32m\]>\[\033[00m\] "
else
PS1="\n \D{%Y-%m-%d} \t > \u@\h > \w\n > "
#PS1="\n \D{%Y-%m-%d} \t o \u@\h in \w\no -> "
fi
unset color_prompt force_color_prompt