summaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2019-07-26 11:03:17 +0200
committerEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2019-07-26 11:03:17 +0200
commitf814734341c1ead1c13dea85bcc7edbcb58f1348 (patch)
tree2ca169e0143cc31eebec2eb600dff05759ff8816 /bash
parent3452065adba96549edb077e10951d3bbea77b0c5 (diff)
Linux based dracula, no weird bullshit
Diffstat (limited to 'bash')
-rw-r--r--bash/.bash_profile15
1 files changed, 8 insertions, 7 deletions
diff --git a/bash/.bash_profile b/bash/.bash_profile
index 2a36645..053789e 100644
--- a/bash/.bash_profile
+++ b/bash/.bash_profile
@@ -4,20 +4,21 @@ source ~/.git-prompt.sh
BLACK="\[\033[0;30m\]"
RED="\[\033[0;31m\]"
GREEN="\[\033[0;32m\]"
-MAGENTA="\[\033[0;33m\]"
+YELLOW="\[\033[0;33m\]"
BLUE="\[\033[0;34m\]"
-YELLOW="\[\033[0;35m\]"
+MAGENTA="\[\033[0;35m\]"
CYAN="\[\033[0;36m\]"
GREY="\[\033[0;37m\]"
DEFAULT="\[\033[0;39m\]"
WHITE=DEFAULT
-PS1BASE="\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}$GREEN\u@\h\[\033[00m\]:$BLUE\w\[\033[00m\]"
-PS1GIT="$CYAN\$(__git_ps1)$DEFAULT"
+PS1BASE="\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}$GREEN\u@\h\[\033[00m\]:$CYAN\w\[\033[00m\]" #not in use atm
+# TODO CHECK THIS, LOOKS INTERESTING
+PS1TIME="$GREEN\t$RED - " # Not in use atm
+PS1BASE="$CYAN\u $YELLOW\w\[\033[m\]"
+PS1GIT="$BLUE\$(__git_ps1)$DEFAULT"
PS1END="$DEFAULT\$ "
PS1="${PS1BASE}${PS1GIT}${PS1END}"
-# TODO CHECK THIS, LOOKS INTERESTING
-# PS1="$GREEN\t$RED - $BLUE\u$YELLOW\w\[\033[m\]$MAGENTA\$(__git_ps1)$WHITE\$ "
if [ -f ~/.bash_aliases ] ; then
. ~/.bash_aliases
@@ -44,7 +45,7 @@ eval "$(pandoc --bash-completion)"
# Guix
if [ -n "$GUIX_ENVIRONMENT" ] # Change prompt if shell is in an environment
then
- PS1GUIXENV="$YELLOW(guix-env)$DEFAULT"
+ PS1GUIXENV="$BLUE(guix-env)$DEFAULT"
PS1="${PS1BASE}${PS1GIT}${PS1GUIXENV}${PS1END}"
fi
export PATH="/home/ekaitz/.config/guix/current/bin${PATH:+:}$PATH"