blob: 28c4efaa17faeeaadbbb4d3cb91af4a0ff6b5d8f (
plain) (
tree)
|
|
# ~/.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
|