9 lines
182 B
Bash
9 lines
182 B
Bash
#!/bin/sh
|
|
|
|
# Wait for dbus to start
|
|
while ! dbus-send --system / org.freedesktop.DBus.Peer.Ping > /dev/null 2> /dev/null; do
|
|
sleep 0.1
|
|
done
|
|
|
|
exec /usr/libexec/bluetooth/bluetoothd
|