From 2f681a25638c4a1753f075955d6ed7796811ec56 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 13 Jan 2016 21:08:20 +0000 Subject: [PATCH] Changed prompt to include fqdn instead of hostname --- .bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.bashrc b/.bashrc index 2771719..7de500a 100644 --- a/.bashrc +++ b/.bashrc @@ -56,10 +56,10 @@ if [ -n "$force_color_prompt" ]; then fi fi -# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' - +# https://help.ubuntu.com/community/CustomizingBashPrompt +# Was [01;32m; if [ "$color_prompt" = yes ]; then - PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' + PS1='${debian_chroot:+($debian_chroot)}\[\033[01;33m\]\u@\H\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' fi