Quellcode |
|
1 |
hidd --connect ma.ca.dr.es.s0 |
Quellcode |
|
1 2 3 |
HID2HCI_ENABLE=true hidd --connect ma.ca.dr.es.s0 |
Quellcode |
|
1 2 |
# Arguments to hidd HIDD_OPTIONS="--connect 00:07:61:05:1F:55" |
Was ich schon geschafft habe:
bluez-utils und bluez-libs emergiert.
Durch Josef's Hilfe habe ich gerausgefunden, dass der hidd Befehl nur existiert, wenn man bluez-utils mit useflag old-daemons inhaliert.
Das wirft die Frage auf, ob es nicht auch mit den neuen Daemons geht.
Quellcode |
|
1 2 |
HIDD_ENABLE = true HIDD_OPTIONS = "--connect 00:07:61:05:1F:55" |
Sorry, aber auch bei "bluez-utils" kann man USE="old-daemons" setzen oder auch nicht..Das ist so nicht ganz richtig. bluez-utils enthält die "old-daemons". Neuerdings gibt es aber nur noch bluez, wo man das USE-Flag "old-daemons" benutzen kann.
Quellcode |
|
1 2 3 |
$ eix bluez-utils * net-wireless/bluez-utils Available versions: 2.25-r1 (~)3.25 (~)3.27 (~)3.28 (~)3.28-r1 (~)3.30 (~)3.32 3.36 {alsa cups dbus debug examples gstreamer gtk hal old-daemons pcmcia test-programs usb} |
Quellcode |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/bash #======================== # # Purpose: Keep a bluetooth keyboard connected via hidd # Author: guard@gmx.net # #======================== KBD_NAME='' #Enter the keyboard name that apperas with hidd --show BLUETOOTH_ADR='' #Enter the bluetooth address of the device (Usually found on the bottom of the keyboard) while(1) { hidd --show | grep $KBD_NAME if [ "$?" != "0" ] then hidd --conect $BLUETOOTH_ADR fi sleep 15 #Hier kann die Anzahl zwischen zwei Läufen festgelegt werden. } |