dotfiles/xinitrc

17 lines
304 B
Plaintext
Raw Normal View History

2016-09-21 13:23:10 +00:00
#!/bin/bash
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
2015-09-26 19:32:00 +00: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
[ -f /etc/xprofile ] && source /etc/xprofile
[ -f ~/.xprofile ] && source ~/.xprofile
2015-07-12 18:59:47 +00:00