Adjust _bashrc to drop `screen.` from `screen.*` TERMs (for Ubuntu).
[dotfiles-framework.git] / _bash_profile
1 # ~/.bash_profile: executed by bash(1) for login shells.
2 # see /usr/share/doc/bash/examples/startup-files for examples.
3 # the files are located in the bash-doc package.
4
5 # the default umask is set in /etc/login.defs
6 #umask 022
7
8 # include .bashrc if it exists
9 if [ -f ~/.bashrc ]; then
10     . ~/.bashrc
11 fi
12
13 # set PATH so it includes user's private bin if it exists
14 if [ -d ~/bin ]; then
15     PATH=~/bin:"${PATH}"
16 fi
17
18 #exec screen -R # automatically attach to first detached session if it exists
19
20 # print my calendar if I've configured it
21 if [ -e ~/.calendar ]; then
22     calendar
23 fi