dotfiles/home/.zprofile
2023-10-18 20:20:23 +02:00

10 lines
267 B
Bash

if [ "$(tty)" = "/dev/tty1" ]
then
export MOZ_ENABLE_WAYLAND=1
export XDG_SESSION_TYPE=wayland
export XDG_CURRENT_DESKTOP=sway
export QT_QPA_PLATFORM=wayland
export CLUTTER_BACKEND=wayland
export SDL_VIDEODRIVER='wayland,x11'
exec sway
fi