mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
x11-common: Add support for starting xdg autostart .desktop files
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
XDGAUTOSTART=/etc/xdg/autostart
|
||||
if [ -d $XDGAUTOSTART ]; then
|
||||
for SCRIPT in $XDGAUTOSTART/*; do
|
||||
CMD=`grep ^Exec= $SCRIPT | cut -d '=' -f 2`
|
||||
$CMD &
|
||||
done
|
||||
fi
|
||||
@@ -2,7 +2,7 @@ DESCRIPTION = "Common X11 scripts"
|
||||
LICENSE = "GPL"
|
||||
SECTION = "x11"
|
||||
RDEPENDS_${PN} = "xmodmap xdpyinfo xtscal xinit formfactor"
|
||||
PR = "r34"
|
||||
PR = "r36"
|
||||
|
||||
SRC_URI = "file://etc"
|
||||
S = ${WORKDIR}
|
||||
|
||||
@@ -2,7 +2,7 @@ DESCRIPTION = "Simple Xserver Init Script (no dm)"
|
||||
LICENSE = "GPL"
|
||||
SECTION = "x11"
|
||||
PRIORITY = "optional"
|
||||
PR = "r17"
|
||||
PR = "r18"
|
||||
RDEPENDS = "dbus-wait"
|
||||
|
||||
SRC_URI = "file://xserver-nodm"
|
||||
|
||||
Reference in New Issue
Block a user