19 lines
424 B
Bash
19 lines
424 B
Bash
# if running bash
|
|
if [ -n "$BASH_VERSION" ]; then
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc" ]; then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
fi
|
|
|
|
source ${HOME}/.custom_profile
|
|
|
|
# set up wayland env vars
|
|
if [ -z "${WAYLAND_DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export MOZ_WEBRENDER=1
|
|
export XDG_SESSION_TYPE=wayland
|
|
export XDG_CURRENT_DESKTOP=sway
|
|
exec dbus-run-session /usr/bin/sway
|
|
fi
|