dotfiles/config/xinitrc

19 lines
301 B
Plaintext
Raw Normal View History

2019-04-25 20:54:51 +00:00
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by xinit (startx)
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
2019-04-25 20:54:51 +00:00
[ -f /etc/xprofile ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
2015-07-12 18:59:47 +00:00
[ -f ~/.xsession ] && . ~/.xsession