mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-14 08:23:25 -05:00
12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
|
xprofile=$HOME/.xprofile
|
||
|
|
||
|
# enable xprofiles
|
||
|
if [ -f "$xprofile" ]; then
|
||
|
source "$xprofile"
|
||
|
fi
|
||
|
|
||
|
# Autostart X using startx after tty login.
|
||
|
if [[ ! ${DISPLAY} && ${XDG_VTNR} == 1 ]] && [[ $(tty) = /dev/tty1 ]]; then
|
||
|
exec tbsm
|
||
|
fi
|