blob: 28c4efaa17faeeaadbbb4d3cb91af4a0ff6b5d8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . "$HOME/.bashrc"
# Start River
if [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
export SDL_VIDEODRIVER=wayland
export QT_QPA_PLATFORM=wayland
export QT_WAYLAND_DISABLE_WINDOWDECORATION="1"
export MOZ_ENABLE_WAYLAND=1
export LIBSEAT_BACKEND="logind"
export NIXOS_OZONE_WL=1
exec dbus-run-session river
fi
# StartX
if [[ ! $DISPLAY && $XDG_VTNR -eq 2 ]]; then
exec startx
fi
|