mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 21:19:06 +08:00
7 lines
180 B
Plaintext
7 lines
180 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# launches a session dbus instance
|
||
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ] && type dbus-launch >/dev/null; then
|
||
|
eval $(dbus-launch --sh-syntax --exit-with-session)
|
||
|
fi
|