dotfiles/home/.zprofile

11 lines
275 B
Bash

if [ "$(tty)" = "/dev/tty1" ]
then
if [ "$(cat /etc/hostname)" = "archXPS15" ]
then
export MOZ_ENABLE_WAYLAND=1
export XDG_SESSION_TYPE=wayland
export XDG_CURRENT_DESKTOP=sway
export QT_QPA_PLATFORM=wayland
exec sway
fi
fi