This repository has been archived on 2024-07-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
etckeeper/X11/Xsession.d/90xbrlapi
T
2022-05-13 09:37:26 +02:00

17 lines
431 B
Plaintext

# startup script for /etc/X11/Xsession.d
prefix=""
exec_prefix="${prefix}"
program_directory="${exec_prefix}/bin"
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}" ]; then
"${brltty}" -b ba -s no -x a2 -N 2>/dev/null
fi
fi
fi