summaryrefslogtreecommitdiff
path: root/configs/profile/root-image/etc/skel/.bash_profile
blob: 5a4b1b2ad19b01f2d14f86358e4b7b4a0dfdf128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# ~/.bash_profile
#

[[ -f ~/.bashrc ]] && . ~/.bashrc


# set standard environment
export EDITOR=nano
export DE='_DESKTOP_SESSION_'              # gnome, kde, xfce, lxde, mate
export DESKTOP_SESSION='_DESKTOP_SESSION_' # lxde


# set custom environment
sudo /root/.automated_script.sh
sudo /root/.language.sh
export $(cat /etc/locale.conf)


# launch accessibility features
[ -d /usr/bin/talk-to-me ] && flock -n /run/talk-to-me.lck /usr/bin/talk-to-me


# launch X
[ -n "$DESKTOP_SESSION" -a -z "$DISPLAY" -a "$(tty)" = /dev/tty1 ] && exec startx || cat /etc/motd