blob: 9857c11d815f209a0e582903868758cef152c674 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . "$HOME/.bashrc"
if [[ "$XDG_SESSION_TYPE" == "wayland" ]]; then
export MOZ_ENABLE_WAYLAND=1
fi
# Start River
if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
exec river
fi
# StartX
if [[ ! $DISPLAY && $XDG_VTNR -eq 2 ]]; then
exec startx
fi
|