aboutsummaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-04-19 00:56:38 -0400
committertdro <tdro@users.noreply.github.com>2020-04-19 00:56:38 -0400
commit8b1b4135d3f5d7dd8bf452525571c3fb3b2811a2 (patch)
tree78176968a30f571575f5cf9565a72b80e2b290d2 /.bash_profile
parent0989735043153aff35f5f85580ab089d18d019a2 (diff)
downloaddotfiles-8b1b4135d3f5d7dd8bf452525571c3fb3b2811a2.tar.gz
dotfiles-8b1b4135d3f5d7dd8bf452525571c3fb3b2811a2.tar.bz2
dotfiles-8b1b4135d3f5d7dd8bf452525571c3fb3b2811a2.zip
.bash_profile: Remove date from PS1
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile6
1 files changed, 3 insertions, 3 deletions
diff --git a/.bash_profile b/.bash_profile
index 3122934..386f952 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -4,9 +4,9 @@
[ "$EUID" != 0 ] && [ -z "$DISPLAY" ] && [ "$(tty)" = '/dev/tty1' ] && exec startx >/dev/null 2>&1;
# set prompt
-PS1_USER='\[\e[38;5;250m\]$(date +%T)\[\e[0m\] \[\e[0;34m\]\W\[\e[0m\] \[\e[0;34m\]\$\[\e[0m\] '
-PS1_ROOT='\[\e[38;5;250m\]$(date +%T)\[\e[0m\] \[\e[0;31m\]\W\[\e[0m\] \[\e[0;31m\]\$\[\e[0m\] '
-PS1_SSHD='\[\e[38;5;250m\]$(date +%T)\[\e[0m\] \[\e[0;32m\]\W\[\e[0m\] \[\e[0;32m\]\$\[\e[0m\] '
+PS1_USER='\[\e[0;34m\]\W\[\e[0m\] \[\e[0;34m\]\$\[\e[0m\] '
+PS1_ROOT='\[\e[0;31m\]\W\[\e[0m\] \[\e[0;31m\]\$\[\e[0m\] '
+PS1_SSHD='\[\e[0;32m\]\W\[\e[0m\] \[\e[0;32m\]\$\[\e[0m\] '
[ "$EUID" != 0 ] && export PS1="$PS1_USER";
[ "$EUID" = 0 ] && export PS1="$PS1_ROOT";