view scripts/dbus/dbus-launch.sh @ 155:5af7c3d4fab2

flatpak (build_manifest): fixed ordering when a one-short temporary directory is used
author Goffi <goffi@goffi.org>
date Fri, 28 Jun 2019 15:21:10 +0200
parents 703a394b9780
children
line wrap: on
line source

#!/bin/sh

DBUS_PATH="/tmp/.dbus.`whoami`"

if [ ! -e $DBUS_PATH ]; then
	dbus-launch --sh-syntax > $DBUS_PATH
	chmod 400 $DBUS_PATH
fi

cat $DBUS_PATH