From d24c9ce8bf5ec0adb5c91f9804cca3bba46ac248 Mon Sep 17 00:00:00 2001 From: Florent Villard Date: Tue, 23 Aug 2005 12:39:04 +0000 Subject: use the current theme name --- perl-install/Xconfig/resolution_and_depth.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-install/Xconfig/resolution_and_depth.pm b/perl-install/Xconfig/resolution_and_depth.pm index 8ae9bab7f..e8a4e5a89 100644 --- a/perl-install/Xconfig/resolution_and_depth.pm +++ b/perl-install/Xconfig/resolution_and_depth.pm @@ -232,11 +232,12 @@ sub set_default_background { my $ratio = $resolution->{X} / $resolution->{Y}; my $dir = "$::prefix/usr/share/mdk/backgrounds"; + my %theme = getVarsFromSh('/etc/sysconfig/bootsplash'); my @l = sort { $a->[1] <=> $b->[1] || $b->[2] <=> $a->[2] || $a->[1] <=> $b->[1]; } map { - if (my ($X, $Y) = /^Mandriva-(\d+)x(\d+).png$/) { + if (my ($X, $Y) = /^$theme{THEME}-(\d+)x(\d+).png$/) { [ $_, int(abs($ratio - $X / $Y) * 100), #- we want the nearest ratio (precision .01) -- cgit v1.2.1