diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-03-22 20:26:47 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-03-22 20:26:47 +0000 |
commit | 247749eb13ece57655302a364e61c74b61259e79 (patch) | |
tree | 1d847b7c20597b0237ce6b84ddf56eaff76891fa | |
parent | bc26e80c712f16d9177fc8d70b1d77964cf4c965 (diff) |
changed PS1 variable and PATH
Diffstat (limited to '')
-rw-r--r-- | bashrc | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -56,11 +56,13 @@ if [ -n "$force_color_prompt" ]; then fi fi -if [ "$color_prompt" = yes ]; then - PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' -else - PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' -fi +PS1="\h:\w \u$ " + +#if [ "$color_prompt" = yes ]; then +# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' +#else +# PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' +#fi unset color_prompt force_color_prompt # If this is an xterm set the title to user@host:dir @@ -140,7 +142,7 @@ export FZF_DEFAULT_OPTS='--color info:108,prompt:109,spinner:108,pointer:168,mar export TERM="xterm-256color" #PATH -export PATH=/home/lemon/bin:$PATH +export PATH=/home/lemon/bin:/home/lemon/.local/bin:$PATH [ -f ~/.fzf.bash ] && source ~/.fzf.bash |