PKGBUILDs/extra/keytouch/Xsession

9 lines
114 B
Text
Raw Normal View History

2009-10-10 02:23:22 +00:00
#!/bin/sh
for script in /etc/X11/Xsession.d/*; do
if [ -x $script ]; then
. $script
fi
done
unset script