Skip to content

Instantly share code, notes, and snippets.

@derekshirk
Last active August 29, 2015 14:23
Show Gist options
  • Save derekshirk/7a7ff3e50d97c9115d89 to your computer and use it in GitHub Desktop.
Save derekshirk/7a7ff3e50d97c9115d89 to your computer and use it in GitHub Desktop.
.bash_profile
# =============================================================== #
# My Personal .bash_profile
# Author: derek shirk
# Website: derekshirk.com
# Subscribe to my newsletter mergelinks.com
# =============================================================== #
# =============================================================== #
# Aliases
alias pushbtn="cd ~/code/pushbtn/wp-content/plugins/pushbtn/"
$USER = 'Mothership'
# =============================================================== #
# Mamp Pro
export PATH=$PATH:/Applications/MAMP/Library/bin
# =============================================================== #
# Create some Color Variables
# Make ls use colors
export CLICOLOR=1
alias ls='ls -Fa'
#txtorg=“\e033[38;5;214mhello world\\033[0m" # Orange - Regular
txtblk='\e[0;30m' # Black
txtred='\e[0;31m' # Red
txtgrn='\e[0;32m' # Green
txtylw='\e[0;33m' # Yellow
txtblu='\e[0;34m' # Blue
txtpur='\e[0;35m' # Purple
txtcyn='\e[0;36m' # Cyan
txtwht='\e[0;37m' # White
bldblk='\e[1;30m' # Black - Bold
bldred='\e[1;31m' # Red
bldgrn='\e[1;32m' # Green
bldylw='\e[1;33m' # Yellow
bldblu='\e[1;34m' # Blue
bldpur='\e[1;35m' # Purple
bldcyn='\e[1;36m' # Cyan
bldwht='\e[1;37m' # White
unkblk='\e[4;30m' # Black - Underline
undred='\e[4;31m' # Red
undgrn='\e[4;32m' # Green
undylw='\e[4;33m' # Yellow
undblu='\e[4;34m' # Blue
undpur='\e[4;35m' # Purple
undcyn='\e[4;36m' # Cyan
undwht='\e[4;37m' # White
bakblk='\e[40m' # Black - Background
bakred='\e[41m' # Red
badgrn='\e[42m' # Green
bakylw='\e[43m' # Yellow
bakblu='\e[44m' # Blue
bakpur='\e[45m' # Purple
bakcyn='\e[46m' # Cyan
bakwht='\e[47m' # White
txtrst='\e[0m' # Text Reset
# =============================================================== #
# Load in the git branch prompt script.
source ~/.git-prompt.sh
# =============================================================== #
# Modify the Prompt
print_before_the_prompt () {
# printf "\n$txtylw%s: $txtpur%s \n$txtrst" "$USER" "$PWD $(__git_ps1)"
printf "\n$txtylw%s: $txtpur%s \n$txtrst" "skynet" "$PWD $(__git_ps1)"
}
# =============================================================== #
# Save a new value for the prompt
PROMPT_COMMAND=print_before_the_prompt
PS1=' -> \W 🔮 What now Master? '
@derekshirk
Copy link
Author

updated. to remove extra space before prompt in print_before_the_prompt() { }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment