dotfiles/zprofile
Naman Sood 816d553ffe fix firefox wayland
Signed-off-by: Naman Sood <mail@nsood.in>
2023-07-27 14:57:22 -04:00

12 lines
312 B
Bash

# fix for WSL not starting ssh-agent on boot
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval `ssh-agent -s`
grep -slR PRIVATE ~/.ssh/ | xargs ssh-add
fi
# fix for firefox using xwayland instead of wayland native
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
export MOZ_ENABLE_WAYLAND=1
fi
export TENDS_TO=42