Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 3b00985c4efc37e4323748209f86e77f > files > 27

g15daemon-1.9.5.3-5mdv2010.0.i586.rpm

#!/bin/bash
# G15Daemon udev script to start/stop the daemon
# when device is connected.
# requires a udev script in the udev rules directory
# see 99-g15daemon.rules as an example.

case $ACTION in
        "add")
                # start g15daemon on keyboard connect
                sudo g15daemon
                ;;
        "remove")
                # kill g15daemon on keyboard disconnect
                sudo g15daemon -k
                ;;
        *)
                exit 0
                ;;
esac