Added autostart sway on login

This commit is contained in:
Tibo De Peuter 2022-04-27 11:40:17 +02:00
parent 6e411ae683
commit c33214778a
2 changed files with 15 additions and 21 deletions

9
config/.zprofile Normal file
View file

@ -0,0 +1,9 @@
#
# ~/.zprofile
#
# Autostart sway on login
if [[ -z ${DISPLAY} && ${TTY} = /dev/tty1 ]] ; then
exec sway
fi