2019-04-25 22:54:51 +02:00
|
|
|
#!/bin/sh
|
2015-07-12 17:50:37 +02:00
|
|
|
#
|
|
|
|
# ~/.xinitrc
|
|
|
|
#
|
2019-04-28 04:05:45 +02:00
|
|
|
# Executed by xinit (startx)
|
|
|
|
|
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
|
|
|
|
2019-04-25 22:54:51 +02:00
|
|
|
[ -f /etc/xprofile ] && . /etc/xprofile
|
|
|
|
[ -f ~/.xprofile ] && . ~/.xprofile
|
2015-07-12 20:59:47 +02:00
|
|
|
|
2019-04-28 04:05:45 +02:00
|
|
|
[ -f ~/.xsession ] && . ~/.xsession
|
|
|
|
|