11 lines
193 B
Bash
11 lines
193 B
Bash
#!/bin/sh
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
unset f
|
|
fi
|
|
|
|
exec $1
|
|
# or just "exec awesome" or "xfce4-session"
|