dotfiles/system/.bash_profile
Severin Kaderli 615d4fac8d Add dconf configuration and small fixes
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
2018-12-13 21:27:38 +01:00

23 lines
No EOL
509 B
Bash

#!/bin/bash
#
# Author: Severin Kaderli <severin.kaderli@gmail.com>
# We just source .bashrc so we don't need to manage two files.
if [[ -f $HOME/.bashrc ]]; then
. $HOME/.bashrc
fi
# Setting keyboard colors
if [[ -f $HOME/.keyleds ]]; then
. $HOME/.keyleds
fi
# Restore custom dconf configuration
cat "${HOME}/dconf/root.conf" | dconf load /
# Activate correct crontab file
crontab $HOME/.crontab
# If we are on tty1 we start the x-server
if [ "$(tty)" = "/dev/tty1" ]; then
startx && exit
fi