dotfiles/.bash_profile
Severin Kaderli 984d7283d0 Added dconf configuration
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2016-10-29 16:41:50 +02:00

12 lines
286 B
Bash

# We just source .bashrc so we don't need to manage two files.
if [[ -f $HOME/.bashrc ]]; then
. $HOME/.bashrc
fi
# Activate correct crontab file
crontab -u severin $HOME/.crontab
# If we are on tty1 we start the x-server
if [ "$(tty)" = "/dev/tty1" ]; then
startx && exit
fi