15 lines
258 B
Text
15 lines
258 B
Text
|
#!/bin/sh
|
||
|
|
||
|
[[ -f ~/.Xresources ]] && xrdb -merge -I"$HOME" ~/.Xresources
|
||
|
xbindkeys
|
||
|
|
||
|
# From the xinitrc default
|
||
|
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
|
||
|
|
||
|
exec startxfce4
|