diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-08-04 05:45:53 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-08-04 05:45:53 +0000 |
commit | df4874571f3ecdffba838671bc9db0a8db80f6ee (patch) | |
tree | b369fc54d525ee1f16be084f8268bfc272406228 /perl-install/bootsplash.pm | |
parent | 0d24be00b8d7401ebf4250a12216f033b89b8f92 (diff) | |
download | drakx-df4874571f3ecdffba838671bc9db0a8db80f6ee.tar drakx-df4874571f3ecdffba838671bc9db0a8db80f6ee.tar.gz drakx-df4874571f3ecdffba838671bc9db0a8db80f6ee.tar.bz2 drakx-df4874571f3ecdffba838671bc9db0a8db80f6ee.tar.xz drakx-df4874571f3ecdffba838671bc9db0a8db80f6ee.zip |
really write progress bar color in configuration files
Diffstat (limited to 'perl-install/bootsplash.pm')
-rw-r--r-- | perl-install/bootsplash.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/perl-install/bootsplash.pm b/perl-install/bootsplash.pm index be957a7d5..24446d5a9 100644 --- a/perl-install/bootsplash.pm +++ b/perl-install/bootsplash.pm @@ -123,6 +123,8 @@ sub theme_write_config_for_resolution { my ($pi_x1, $pi_x2, $pi_y1, $pi_y2) = ($pb_x1 + 1, $pb_x2 - 1, $pb_y1 + 1, $pb_y2 - 1); my ($tb_x1, $tb_x2, $tb_y1, $tb_y2) = ($conf->{tx}, $conf->{tx} + $conf->{tw}, $conf->{ty}, $conf->{ty} + $conf->{th}); my ($ti_x1, $ti_x2, $ti_y1, $ti_y2) = ($tb_x1 + 1, $tb_x2 - 1, $tb_y1 + 1, $tb_y2 - 1); + my $pc = $conf->{pc}; + $pc =~ s/^0x/#/; output($config, qq(# This is the configuration file for the $res bootsplash picture @@ -160,11 +162,11 @@ silentjpeg=$jpeg progress_enable=1 # background -# b(order) or i(nter) ? +# b(order) or i(nter) box silent noover $pb_x1 $pb_y1 $pb_x2 $pb_y2 #040454 # progress bar -box silent inter $pi_x1 $pi_y1 $pi_x1 $pi_y2 #eeeeee #eeeeee #21449c #21449c -box silent $pi_x1 $pi_y1 $pi_x2 $pi_y2 #eeeeee #eeeeee #21449c #21449c +box silent inter $pi_x1 $pi_y1 $pi_x1 $pi_y2 $pc $pc $pc $pc +box silent $pi_x1 $pi_y1 $pi_x2 $pi_y2 $pc $pc $pc $pc # black border (top, bottom, left, right) box silent $pb_x1 $pb_y1 $pb_x2 $pb_y1 #313234 box silent $pb_x1 $pb_y2 $pb_x2 $pb_y2 #889499 |