summaryrefslogtreecommitdiff
path: root/bash_profile
blob: fd8a8a8152035a6d55a4fb763fc4dd428b0058ae (plain)
1
2
3
4
5
6
7
8
9
# Set up the system, user profile, and related variables.
# /etc/profile will be sourced by bash automatically
# Set up the home environment profile.
if [ -f ~/.profile ]; then source ~/.profile; fi

# Honor per-interactive-shell startup file
if [ -f ~/.bashrc ]; then source ~/.bashrc; fi

if [[ "$(tty)" == "/dev/tty1" ]]; then exec dbus-run-session hikari; fi