diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-10-05 23:04:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-10-05 23:04:34 +0000 |
commit | 6e10a5c1c062bc55d1a3327cd13d4447ee9a3010 (patch) | |
tree | 5fe5c574bc5ad4ae5ac95d588bf42c98b6bb12b4 /perl-install/install_any.pm | |
parent | 32ffa5852bbaf28a57bf1d6304b4ca57350d61d2 (diff) | |
download | drakx-6e10a5c1c062bc55d1a3327cd13d4447ee9a3010.tar drakx-6e10a5c1c062bc55d1a3327cd13d4447ee9a3010.tar.gz drakx-6e10a5c1c062bc55d1a3327cd13d4447ee9a3010.tar.bz2 drakx-6e10a5c1c062bc55d1a3327cd13d4447ee9a3010.tar.xz drakx-6e10a5c1c062bc55d1a3327cd13d4447ee9a3010.zip |
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 7 |
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"; |