dotfiles/.profile

19 lines
424 B
Text
Raw Normal View History

# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
2024-04-11 19:25:48 +00:00
source ${HOME}/.custom_profile
2024-03-30 18:36:49 +00:00
# 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
2024-03-30 18:36:49 +00:00
export XDG_CURRENT_DESKTOP=sway
2024-04-11 19:25:48 +00:00
exec dbus-run-session /usr/bin/sway
fi