From c05dfdd1209e0aa30d3cb6ca35e8c6d3bfc7a5bf Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 5 Dec 2023 17:17:42 -0800 Subject: [PATCH] Fix KDE background solidification for change to sddm-breeze There used to be a theme.conf.user file, there isn't any more. I think this should work both before and after. Signed-off-by: Adam Williamson --- tests/desktop_login.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/desktop_login.pm b/tests/desktop_login.pm index 91ee7bb6..7151401f 100644 --- a/tests/desktop_login.pm +++ b/tests/desktop_login.pm @@ -188,7 +188,9 @@ sub run { } if ($desktop eq "kde") { # use solid blue background for SDDM - assert_script_run "sed -i -e 's,image,solid,g' /usr/share/sddm/themes/01-breeze-fedora/theme.conf.user"; + # theme.conf.user was dropped in 5.90.0-2.fc40, doing + # theme.conf* should work before and after + assert_script_run "sed -i -e 's,image,solid,g' /usr/share/sddm/themes/01-breeze-fedora/theme.conf*"; } adduser(name => "Jack Sparrow", login => "jack", password => $jackpass); if ($desktop eq "gnome") {