diff options
Diffstat (limited to 'base/dbus/80-dbus')
-rw-r--r-- | base/dbus/80-dbus | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/base/dbus/80-dbus b/base/dbus/80-dbus new file mode 100644 index 000000000..676d99551 --- /dev/null +++ b/base/dbus/80-dbus @@ -0,0 +1,12 @@ +#!/bin/bash + +# launches a session dbus instance + +dbuslaunch="`which dbus-launch 2>/dev/null`" +if [ -n "$dbuslaunch" ] && [ -x "$dbuslaunch" ] && [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then + if [ -n "$command" ]; then + command="$dbuslaunch --exit-with-session $command" + else + eval `$dbuslaunch --sh-syntax --exit-with-session` + fi +fi |