diff options
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r-- | perl-install/common.pm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm index 282112275..f39cda588 100644 --- a/perl-install/common.pm +++ b/perl-install/common.pm @@ -138,6 +138,34 @@ sub group_n_lm { @l } +sub screenshot_dir__and_move { + my ($dir1, $dir2) = ("$::o->{prefix}/root", '/tmp/stage2'); + if (-e $dir1) { + if (-e "$dir2/DrakX-screenshots") { + cp_af("$dir2/DrakX-screenshots", $dir1); + rm_rf("$dir2/DrakX-screenshots"); + } + $dir1; + } else { + $dir2; + } +} + +sub take_screenshot { + my ($in) = @_; + my $dir = screenshot_dir__and_move() . '/DrakX-screenshots'; + my $warn; + if (!-e $dir) { + mkdir $dir or $in->ask_warn('', _("Can't make screenshots before partitioning")), return; + $warn = 1; + } + my $nb = 1; + $nb++ while -e "$dir/$nb.png"; + system("fb2png /dev/fb0 $dir/$nb.png 0"); + + $in->ask_warn('', _("Screenshots will be available after install in %s", "/root/DrakX-screenshots")) if $warn; +} + #-###################################################################################### #- Wonderful perl :( #-###################################################################################### |