Revert "Make desktop_login wait a bit before trying to launch stuff"

This reverts commit 3d6e46db28. It
was wrong, I forgot the problem is something else.
This commit is contained in:
Adam Williamson 2020-05-25 14:18:35 -07:00
parent 3d6e46db28
commit de48d228af

View File

@ -243,8 +243,6 @@ sub run {
# Log in with the first user account.
login_user(user=>"jack", password=>$jackpass);
# give it a few seconds to settle before we launch stuff
wait_still_screen 5;
# Because some of the desktop candiness is based on semi-transparent items that change colours
# with every background change, we want to get rid of the background and make it a solid color.
solidify_wallpaper;
@ -261,8 +259,6 @@ sub run {
# If not, we are in KDE and we will log in normally.
login_user(user=>"jim", password=>$jimpass);
}
# give it a few seconds to settle before we launch stuff
wait_still_screen 5;
# The backgrounds must be solid for both newly created users to take effect in the login session.
solidify_wallpaper;
check_user_logged_in("jim");