initial commit

This commit is contained in:
gin
2026-05-13 14:17:03 +08:00
commit b17dec8e44
10 changed files with 169 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
if [ -n "$BASH_VERSION" ]; then
export PS1='\[\e[38;5;147m\]\u\[\e[0m\]@\[\e[38;5;183m\]\h\[\e[0m\] \[\e[38;5;225m\]\w\[\e[0m\] \$ '
else
if [ "$UID" -eq 0 ]; then
export PROMPT="%F{147}%n%f@%F{183}%m%f %F{225}%~%f %# "
else
export PROMPT="%F{147}%n%f@%F{183}%m%f %F{225}%~%f \$ "
fi
fi