blob: cb3e3e5b3239868ce93ae58042c17f9f26d7f44a [file] [log] [blame] [edit]
# startup script for /etc/X11/Xsession.d
prefix="@prefix@"
exec_prefix="@exec_prefix@"
drivers_directory="@drivers_directory@"
program_directory="@program_directory@"
xbrlapi="$program_directory/xbrlapi"
brltty="$program_directory/brltty"
if [ -x "${xbrlapi}" ]; then
if "${xbrlapi}" 2>/dev/null ; then
# xbrlapi could connect to BrlAPI, try to start brltty with AtSpi2 driver.
if [ -x "${brltty}" -a \
-e "$drivers_directory/libbrlttybba.so" -a \
-e "$drivers_directory/libbrlttyxa2.so" ]; then
"${brltty}" -b ba -s no -x a2 -N 2>/dev/null
fi
fi
fi