dotfiles/xinitrc
Geoffrey Frogeye 9497ba3762 Now understood how xinitrc and xprofile files work
Now it should work correctly which DM, a problem
that I did not know it didn't worked.
2016-03-31 21:40:35 +02:00

17 lines
302 B
Bash

#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
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