summaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorMaciej Sobkowski <maciejjo@maciejjo.pl>2015-07-07 07:55:58 +0200
committerMaciej Sobkowski <maciejjo@maciejjo.pl>2015-07-07 07:55:58 +0200
commit1267615485ad60cc3bd7f37b596a8a918ab34d93 (patch)
tree27bd84a74bceffc52724b101cb82e052cb1d7fd8 /bash
parent20c99b981846248eff11b1ff19a8a5fceaba5190 (diff)
Added other Base16 localization
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index f8968c7..a999039 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -113,6 +113,8 @@ fi
# Base16 Shell
BASE16_SHELL="$HOME/.config/base16-shell/base16-default.dark.sh"
[[ -s $BASE16_SHELL ]] && source $BASE16_SHELL
+BASE16_SHELL="/usr/share/base16-shell/base16-default.dark.sh"
+[[ -s $BASE16_SHELL ]] && source $BASE16_SHELL
# load color codes
test -r ~/.bash/color_codes &&
@@ -145,7 +147,7 @@ jobscount() {
prompt_color() {
- PS1="${BLUE}[${GREEN}\T${BLUE}][${YELLOW}\u${GREY}@${PURPLE}\h${GREY}:${CYAN}\W${BLUE}][${RED}\j${BLUE}]${BROWN}$P${PS_CLEAR} "
+ PS1="${BLUE}[${GREEN}\t${BLUE}][${YELLOW}\u${GREY}@${PURPLE}\h${GREY}:${CYAN}\W${BLUE}][${RED}\j${BLUE}]${BROWN}$P${PS_CLEAR} "
PS2="${P} "
}