14 lines
315 B
Bash
Executable file
14 lines
315 B
Bash
Executable file
# .bash_profile
|
|
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
fi
|
|
|
|
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
|