slackbuilds_ponce/desktop/fbautostart/README.Slackware
Sébastien Ballet b442552a1f desktop/fbautostart: Added (XDG Autostarter for Fluxbox).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-11-07 09:06:10 +00:00

12 lines
363 B
Text

Add the code below into your fluxbox's startup
script (i.e. ~/.fluxbox/startup), after "Start
DBUS session bus:" code section, or just above
the line "exec fluxbox" :
8<-------------------------------------------
# Start XDG compliant startup tool
#
if [ -x /usr/bin/fbautostart ] ; then
/usr/bin/fbautostart &
fi
8<-------------------------------------------