Add .fluxbox/keys.
[dotfiles-framework.git] / src / .bash_profile
1 # This file is sourced by bash for login shells.
2
3 # The following line runs your .bashrc and is recommended by the bash
4 # info pages.
5 [[ -f ~/.bashrc ]] && . ~/.bashrc
6
7 # set PATH so it includes user's private bin if it exists
8 if [ -d ~/bin ]; then
9     PATH=~/bin:"${PATH}"
10 fi
11
12 #exec screen -R # automatically attach to first detached session if it exists
13
14 # print my calendar if I've configured it
15 # http://bsdcalendar.sourceforge.net/  (Gentoo: app-misc/calendar)
16 if [ -f ~/.calendar/calendar ]; then
17     calendar
18 fi