26 lines
575 B
Text
26 lines
575 B
Text
|
# if running bash
|
||
|
if [ -n "$BASH_VERSION" ]; then
|
||
|
# include .bashrc if it exists
|
||
|
if [ -f "$HOME/.bashrc" ]; then
|
||
|
. "$HOME/.bashrc"
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
# set PATH so it includes user's private bin if it exists
|
||
|
if [ -d "$HOME/bin" ]; then
|
||
|
PATH="$HOME/bin:$PATH"
|
||
|
fi
|
||
|
|
||
|
# set PATH so it includes user's private bin if it exists
|
||
|
if [ -d "$HOME/.local/bin" ]; then
|
||
|
PATH="$HOME/.local/bin:$PATH"
|
||
|
fi
|
||
|
|
||
|
if [ -z "${WAYLAND_DISPLAY}" ] && [ "${XDG_VTNR}" -eq 1 ]; then
|
||
|
export MOZ_ENABLE_WAYLAND=1
|
||
|
export MOZ_WEBRENDER=1
|
||
|
export XDG_SESSION_TYPE=wayland
|
||
|
XDG_CURRENT_DESKTOP=sway
|
||
|
exec sway
|
||
|
fi
|