diff options
-rwxr-xr-x | control-center | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/control-center b/control-center index 53e720e8..b4cd903f 100755 --- a/control-center +++ b/control-center @@ -40,7 +40,10 @@ Gtk->set_locale; use Config; use POSIX; -my $in = 'interactive'->vnew('su', 'default'); +print "meuh\n"; +$in = 'interactive'->vnew('su', 'default'); +$in->do_pkgs->install('sane-frontends'); + my $_version = "8.3"; my $conffile = "/root/.mcc"; @@ -487,6 +490,7 @@ $window_global->set_position(1); $SIG{USR1} = \&sig_usr1; $SIG{USR2} = \&sig_usr2; $SIG{TERM} = \&quit_global; +$SIG{CHLD} = sub {wait() }; Gtk->main; sub gtkpng_ { |