You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
292 B
10 lines
292 B
#!/bin/sh |
|
# Usage: plasma-dbus-run-session-if-needed PROGRAM [ARGUMENTS] |
|
# If the session bus is not available it is spawned and wrapper round our program |
|
# Otherwise we spawn our program directly |
|
drs= |
|
if [ -z "${DBUS_SESSION_BUS_ADDRESS}" ] |
|
then |
|
drs=dbus-run-session |
|
fi |
|
exec ${drs} "$@"
|
|
|