dotfiles/xinitrc
Geoffrey Frogeye 62120e4592 Let my HOME alone 2/2
Also I messed up my Vim syntax coloring and probably X with DM.
Oh well.
2019-04-28 04:05:45 +02:00

21 lines
318 B
Bash
Executable file

#!/bin/sh
#
# ~/.xinitrc
#
# Executed by xinit (startx)
echo ~/.xinitrc
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 ] && . /etc/xprofile
[ -f ~/.xprofile ] && . ~/.xprofile
[ -f ~/.xsession ] && . ~/.xsession