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