void-desktop/config-files/bash/.bash_profile

15 lines
315 B
Bash
Raw Normal View History

# .bash_profile
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
export MOZ_ENABLE_WAYLAND=1
fi
2023-02-04 20:38:12 +01:00
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
export GDK_BACKEND=wayland
fi
mkdir -m 0700 -p /tmp/$(id -u)
export XDG_RUNTIME_DIR=/tmp/$(id -u)
# Get the aliases and functions
[ -f $HOME/.bashrc ] && . $HOME/.bashrc