aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2017-05-04 08:58:10 +0200
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2017-05-04 08:58:10 +0200
commita38e3b313d7aa0c3de2f85ce9bdd39d186c18b18 (patch)
tree26285dc9f573201642ca6a0f590a352400fa212d
parentf1ce4ffda9abef8d8fcace19bff395d215a698c7 (diff)
downloaddotfiles-a38e3b313d7aa0c3de2f85ce9bdd39d186c18b18.tar.gz
dotfiles-a38e3b313d7aa0c3de2f85ce9bdd39d186c18b18.tar.bz2
dotfiles-a38e3b313d7aa0c3de2f85ce9bdd39d186c18b18.zip
Source global bashrc if exsists
-rwxr-xr-xbash/.bashrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index d927b02..48c3ee6 100755
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -5,6 +5,9 @@
5# If not running interactively, don't do anything 5# If not running interactively, don't do anything
6[[ $- != *i* ]] && return 6[[ $- != *i* ]] && return
7 7
8[ -f "/etc/bashrc" ] && source "/etc/bashrc"
9
10
8# Default PS1 11# Default PS1
9export PS1='[\d][\t]\u on \h\n\w $ ' 12export PS1='[\d][\t]\u on \h\n\w $ '
10 13