fix variable

This commit is contained in:
Simon Rieger 2023-05-31 19:51:41 +02:00
parent 7bf9fd9f85
commit 09db110fd0

View file

@ -7,7 +7,7 @@ if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
done
# Falls autostartdesktop auf i3 gesetzt wird, wird i3 statt sway gestartet
if [ "${autostartdesktop}" == "i3" ]; then
if [ "${autostartdesktop}" = "i3" ]; then
echo "exec i3" > ~/.xinitrc
startx
else