New backup 2024-05-30 23:53:18

This commit is contained in:
Penelope Gwen 2024-05-30 23:53:18 -06:00
parent a06e594fb4
commit 8ac6fdd0bc

View file

@ -55,4 +55,14 @@ GIT_EDITOR="/usr/bin/nano"
#. /usr/share/bash-completion/completions/quilt #. /usr/share/bash-completion/completions/quilt
#complete -F _quilt_completion -o filenames dquilt #complete -F _quilt_completion -o filenames dquilt
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' export ssh_prefix=""
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
export ssh_prefix="[SSH] "
else
export ssh_prefix=""
fi
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1='\[\e[1m\e[95m\]$ssh_prefix\[\e[m\]${debian_chroot:+($debian_chroot)}\[\e[01;32m\]\u@\h\[\e[00m\]:\[\e[01;34m\]\w\[\e[00m\]\$ '
bind TAB:menu-complete