Dotfiles config update (2022-12-10)

This commit is contained in:
q3aql 2022-12-10 18:15:10 +01:00
parent fa1f837525
commit 5496d9941b

13
scripts/brainy-light.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[00;36m\]\u@\h\[\033[00m\] \[\033[00;35m\][\[\033[00m\]\[\033[00;33m\]\w\[\033[00m\]\[\033[00;35m\]]\[\033[00m\] \[\033[00;32m\]o\[\033[00m\] \[\033[00;35m\][\[\033[00m\]\t\[\033[00;35m\]]\[\033[00m\]\n\[\033[00;35m\]>\[\033[00m\] "
else
PS1="\n\u@\h [\w] ○ [\t]\n> "
#PS1="\u@\h [\w] o [\t]\n> "
fi
unset color_prompt force_color_prompt