summaryrefslogtreecommitdiff
path: root/.bash_profile
blob: de1c6979dfae23e876b4553f24aeb7b78d684ff9 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# This only is read by bash when it is a login shell, not an interactive
# one (lightdm, for example).
# So '.profile' has to be sourced (as well as .bashrc).
# See: https://unix.stackexchange.com/questions/88106/why-doesnt-my-bash-profile-work

[ -f $HOME/.profile ] && . $HOME/.profile
[ -f $HOME/.bashrc ] && . $HOME/.bashrc