Last change
on this file since 86 was 82, checked in by Sanahuja Guillaume, 6 years ago |
support for multiple ds3 in usb
|
-
Property svn:executable
set to
*
|
File size:
841 bytes
|
Line | |
---|
1 | #! /bin/bash
|
---|
2 | ARCH_DIR=$(uname -m)
|
---|
3 |
|
---|
4 | #on kernel >=4.13, ds3 is seen as a mouse
|
---|
5 | #search every ds3 connected and disable them
|
---|
6 | for id in `xinput --list|grep 'Sony PLAYSTATION(R)3 Controller'|perl -ne 'while (m/id=(\d+)/g){print "$1\n";}'`; do
|
---|
7 | xinput set-prop $id 'Device Enabled' 0
|
---|
8 | done
|
---|
9 |
|
---|
10 | #This script is the only one that calls itself with sudo.
|
---|
11 | #As a consequence, only one exception is needed in sudoers (the following 2 lines)
|
---|
12 | # Defaults!/opt/flair/flair-bin/tools/scripts/dualshock3.sh setenv
|
---|
13 | # uav ALL=(root) /opt/flair/flair-bin/tools/scripts/dualshock3.sh
|
---|
14 |
|
---|
15 | #we must run as root
|
---|
16 | if [ $EUID -ne 0 ]; then
|
---|
17 | exec sudo -E $0 $*
|
---|
18 | fi
|
---|
19 |
|
---|
20 | . ${FLAIR_ROOT}/flair-bin/tools/scripts/ubuntu_cgroup_hack.sh
|
---|
21 |
|
---|
22 | export LD_LIBRARY_PATH="${OECORE_HOST_SYSROOT}/usr/lib:${OECORE_HOST_SYSROOT}/lib"
|
---|
23 | ${FLAIR_ROOT}/flair-bin/tools/$ARCH_DIR/unix/dualshock3 $*
|
---|
Note:
See
TracBrowser
for help on using the repository browser.