7 lines
167 B
Bash
7 lines
167 B
Bash
|
# .bash_profile
|
||
|
if [ "$XDG_SESSION_TYPE" == "wayland" ]; then
|
||
|
export MOZ_ENABLE_WAYLAND=1
|
||
|
fi
|
||
|
# Get the aliases and functions
|
||
|
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
|