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

X11/xdg: migrate to XDG_CONFIG_DIR

This commit is contained in:
2018-04-11 17:42:42 +01:00
parent 1bc7dd7845
commit 8edd378b66
6 changed files with 118 additions and 118 deletions

18
.config/X11/xinitrc Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
# 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
fi
source ~/.profile
source $XDG_CONFIG_HOME/X11/xsession
xrdb -merge $XDG_CONFIG_HOME/X11/xresources
exec i3