shortcut sourcing now non-automatic
This commit is contained in:
8
.bashrc
8
.bashrc
@@ -9,11 +9,9 @@ stty -ixon # Disable ctrl-s and ctrl-q.
|
||||
shopt -s autocd #Allows you to cd into directory merely by typing the directory name.
|
||||
HISTSIZE= HISTFILESIZE= # Infinite history.
|
||||
|
||||
# Setting Bash prompt. Capitalizes username and host if root user (my root user uses this same config file).
|
||||
if [ "$EUID" -ne 0 ]
|
||||
then export PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]\u\[$(tput setaf 2)\]@\[$(tput setaf 4)\]\h \[$(tput setaf 5)\]\W\[$(tput setaf 1)\]]\[$(tput setaf 7)\]\\$ \[$(tput sgr0)\]"
|
||||
else export PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]ROOT\[$(tput setaf 2)\]@\[$(tput setaf 4)\]$(hostname | awk '{print toupper($0)}') \[$(tput setaf 5)\]\W\[$(tput setaf 1)\]]\[$(tput setaf 7)\]\\$ \[$(tput sgr0)\]"
|
||||
fi
|
||||
export PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]\u\[$(tput setaf 2)\]@\[$(tput setaf 4)\]\h \[$(tput setaf 5)\]\W\[$(tput setaf 1)\]]\[$(tput setaf 7)\]\\$ \[$(tput sgr0)\]"
|
||||
|
||||
[ -f "$HOME/.shortcuts" ] && source "$HOME/.shortcuts" # Load shortcut aliases
|
||||
|
||||
export GPG_TTY=$(tty)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user