Last active
July 18, 2024 14:15
-
-
Save iversond/3cad03c60d56fd69d9cb2d1df50c440d to your computer and use it in GitHub Desktop.
Cloud Manager profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific environment | |
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] | |
then | |
PATH="$HOME/.local/bin:$HOME/bin:$PATH" | |
fi | |
export PATH | |
# User specific aliases and functions | |
[ -f /home/opc/.bash_history ] || rm -f /home/opc/.bash_history && touch /home/opc/.bash_history | |
if tput setaf 1 &> /dev/null; then | |
tput sgr0; # reset colors | |
bold=$(tput bold); | |
reset=$(tput sgr0); | |
# Solarized colors, taken from http://git.io/solarized-colors. | |
black=$(tput setaf 0); | |
blue=$(tput setaf 33); | |
cyan=$(tput setaf 37); | |
green=$(tput setaf 64); | |
orange=$(tput setaf 166); | |
purple=$(tput setaf 125); | |
red=$(tput setaf 124); | |
violet=$(tput setaf 61); | |
white=$(tput setaf 15); | |
yellow=$(tput setaf 136); | |
else | |
bold=''; | |
reset="\e[0m"; | |
black="\e[1;30m"; | |
blue="\e[1;34m"; | |
cyan="\e[1;36m"; | |
green="\e[1;32m"; | |
orange="\e[1;33m"; | |
purple="\e[1;35m"; | |
red="\e[1;31m"; | |
violet="\e[1;35m"; | |
white="\e[1;37m"; | |
yellow="\e[1;33m"; | |
fi; | |
# Highlight the user name when logged in as root. | |
if [[ "${USER}" == "root" ]]; then | |
userStyle="${red}"; | |
else | |
userStyle="${orange}"; | |
fi; | |
# Highlight the hostname when connected via SSH. | |
if [[ "${SSH_TTY}" ]]; then | |
hostStyle="${bold}${blue}☁ "; | |
else | |
hostStyle="${yellow}"; | |
fi; | |
# Set the terminal title and prompt. | |
PS1="\[\033]0;\W\007\]"; # working directory base name | |
PS1+="\[${bold}\]\n"; # newline | |
# PS1+="\[${reset}\][\t] " # 24 hour timestamp | |
PS1+="\[${userStyle}\]\u"; # username | |
PS1+="\[${white}\] at "; | |
PS1+="\[${hostStyle}\]\h"; # host | |
PS1+="\[${white}\] in "; | |
PS1+="\[${green}\]\w"; # working directory full path | |
#PS1+="\$(prompt_git \"\[${white}\] on \[${violet}\]\" \"\[${blue}\]\")"; # Git repository details | |
PS1+="\n"; | |
PS1+="\[${white}\]❯ \[${reset}\]"; # `$` (and reset color) | |
export PS1; | |
alias suadm1='sudo su - psadm1' | |
alias suadm2='sudo su - psadm2' | |
alias suadm3='sudo su - psadm3' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment