dotfiles/zprofile
Naman Sood 82c8a6aaa1 plead harder with firefox to use wayland
Signed-off-by: Naman Sood <mail@nsood.in>
2024-01-11 12:48:25 -05:00

13 lines
340 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
export GDK_BACKEND=wayland
fi
export TENDS_TO=42