source: flair-bin/trunk/tools/scripts/dualshock3.sh

Last change on this file was 88, checked in by Sanahuja Guillaume, 5 years ago

use new arch dir

  • Property svn:executable set to *
File size: 854 bytes
Line 
1#! /bin/bash
2#ARCH_DIR=$(uname -m)
3ARCH_DIR=core2-64
4#on kernel >=4.13, ds3 is seen as a mouse
5#search every ds3 connected and disable them
6for 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
8done
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
16if [ $EUID -ne 0 ]; then
17 exec sudo -E $0 $*
18fi
19
20. ${FLAIR_ROOT}/flair-bin/tools/scripts/ubuntu_cgroup_hack.sh
21
22export LD_LIBRARY_PATH="${OECORE_HOST_SYSROOT}/usr/lib:${OECORE_HOST_SYSROOT}/lib"
23${FLAIR_ROOT}/flair-bin/tools/$ARCH_DIR/dualshock3 $*
Note: See TracBrowser for help on using the repository browser.