You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
|
|
# NOTE: this fixes a bug where at-spi-bus-launcher was hanging systemd on reboot |
|
# except it doesn't :(, can still force kill at-spi-bus-launcher before reboot |
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then |
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do |
|
[ -x "$f" ] && . "$f" |
|
done |
|
unset f |
|
fi |
|
|
|
if [ -f /usr/bin/startxfce4 ] ; then |
|
/usr/bin/startxfce4 |
|
fi |
|
|
|
|