PKGBUILDs/extra/keytouch/Xsession
2009-10-09 21:23:22 -05:00

8 lines
114 B
Bash
Executable file

#!/bin/sh
for script in /etc/X11/Xsession.d/*; do
if [ -x $script ]; then
. $script
fi
done
unset script