2015-07-12 17:50:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# ~/.xinitrc
|
|
|
|
#
|
|
|
|
# Executed by startx (run your window manager from here)
|
2015-09-26 21:32:00 +02:00
|
|
|
|
2016-03-31 21:40:35 +02:00
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
|
|
|
unset f
|
|
|
|
fi
|
2015-07-12 17:50:37 +02:00
|
|
|
|
2016-03-31 21:40:35 +02:00
|
|
|
[ -f /etc/xprofile ] && source /etc/xprofile
|
|
|
|
[ -f ~/.xprofile ] && source ~/.xprofile
|
2015-07-12 20:59:47 +02:00
|
|
|
|