diff options
author | Stew Benedict <stewb@mandriva.org> | 2005-03-22 15:34:38 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2005-03-22 15:34:38 +0000 |
commit | 9dc52f06f8967b0385afeef34beaa3744bb06a98 (patch) | |
tree | 92f744aebd8d42ed60d0c2e7c746f0c1dd230932 /perl-install/mouse.pm | |
parent | 4cb023bf5d9c1c23c13e9ed9351e79b0b3ca5c05 (diff) | |
download | drakx-9dc52f06f8967b0385afeef34beaa3744bb06a98.tar drakx-9dc52f06f8967b0385afeef34beaa3744bb06a98.tar.gz drakx-9dc52f06f8967b0385afeef34beaa3744bb06a98.tar.bz2 drakx-9dc52f06f8967b0385afeef34beaa3744bb06a98.tar.xz drakx-9dc52f06f8967b0385afeef34beaa3744bb06a98.zip |
XBox - get xpad to work in install (added xset)
Diffstat (limited to 'perl-install/mouse.pm')
-rw-r--r-- | perl-install/mouse.pm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index f126c9cc0..822fe5a38 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -294,7 +294,7 @@ sub detect { my $synaptics_mouse; if (my $mouse_nb = scalar grep { /^H: Handlers=mouse/ } @input_devices) { if (is_xbox()) { - return fullname2mouse('Universal|Microsoft Xbox Controller S'); + return fullname2mouse('Universal|Microsoft Xbox Controller S', if_($::isInstall, alternate_install => fullname2mouse('Universal|Microsoft Xbox Controller S'))); } my $univ_mouse = fullname2mouse('Universal|Any PS/2 & USB mice', wacom => \@wacom); if (my $synaptics_name = find { m!^N: Name="(?:SynPS/2 Synaptics TouchPad|AlpsPS/2 ALPS TouchPad)"$! } @input_devices) { @@ -421,7 +421,15 @@ sub various_xfree_conf { output_with_perm($f, 0755, "xinput set-button-map Mouse2 1 2 3 6 7 4 5\n"); } } - + { + my $f = "$::prefix/etc/X11/xinit.d/xpad"; + if ($mouse->{name} !~ /^Microsoft Xbox Controller/) { + unlink($f); + } else { + output_with_perm($f, 0755, "xset m 1/8 1\n"); + } + } + if (member(N_("Synaptics Touchpad"), $mouse->{name}, $mouse->{auxmouse} && $mouse->{auxmouse}{name})) { $do_pkgs->install("synaptics"); } |