2016-03-31 02:03:55 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-04-16 17:03:56 +00:00
|
|
|
# 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
|
|
|
|
|
2017-07-08 23:09:12 +00:00
|
|
|
source ~/.profile
|
2018-04-11 16:42:42 +00:00
|
|
|
source $XDG_CONFIG_HOME/X11/xsession
|
|
|
|
xrdb -merge $XDG_CONFIG_HOME/X11/xresources
|
2016-05-15 22:51:12 +00:00
|
|
|
~/.local/share/surfacetools/rotationd --once
|
2017-07-08 23:09:12 +00:00
|
|
|
|
2016-03-31 02:03:55 +00:00
|
|
|
exec i3
|