summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index c4f8fe828..bccc49e85 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -454,11 +454,12 @@ sub install_urpmi {
sub kderc_largedisplay {
my ($prefix) = @_;
- update_userkderc($prefix, 'KDE',
+ update_userkderc($_, 'KDE',
Contrast => 7,
kfmIconStyle => "Large",
kpanelIconStyle => "Normal", #- to change to Large when icons looks better
- KDEIconStyle => "Large");
+ KDEIconStyle => "Large") foreach list_skels($prefix, '.kderc');
+
substInFile {
s/^(GridWidth)=85/$1=100/;
s/^(GridHeight)=70/$1=75/;
@@ -565,7 +566,7 @@ sub loadO {
my ($O, $f) = @_; $f ||= auto_inst_file;
my $o;
if ($f =~ /^(floppy|patch)$/) {
- my $f = $f eq "floppy" ? 'Mandrake/base/auto_inst.cfg' : "patch";
+ my $f = $f eq "floppy" ? 'auto_inst.cfg' : "patch";
unless ($::testing) {
fs::mount(devices::make(detect_devices::floppy()), "/mnt", (arch() =~ /sparc/ ? "romfs" : "vfat"), 'readonly');
$f = "/mnt/$f";