1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00
dotfiles/.xinitrc

19 lines
364 B
Plaintext
Raw Normal View History

2016-03-31 02:03:55 +00:00
#!/bin/sh
source ~/.profile
2016-08-03 16:10:13 +00:00
source ~/.xsession
2016-03-31 02:03:55 +00:00
xrdb -merge ~/.Xresources
# Run all system xinitrc shell scripts
xinitdir="/etc/X11/xinit/xinitrc.d"
if [ -d "$xinitdir" ]; then
for script in $xinitdir/*; do
echo "Loading xinit script $script"
if [ -x "$script" -a ! -d "$script" ]; then
. "$script"
fi
done
2016-03-31 02:03:55 +00:00
fi
exec i3