dotfiles/zsh/.config/zsh/.zprofile

8 lines
275 B
Plaintext
Raw Normal View History

if [[ $(. /etc/os-release && echo $ID) == "artix" ]] && [[ $(tty) == "/dev/tty1" ]]; then
2023-10-29 15:50:18 +00:00
export XDG_CURRENT_DESKTOP="sway"
export GTK_USE_PORTAL=1
export QT_QPA_PLATFORM="wayland"
2022-09-18 19:04:42 +00:00
dbus-launch --sh-syntax --exit-with-session sway &> /dev/null; exit 0
fi