Merge updates from recent build

This commit is contained in:
natemaia
2017-10-23 16:35:35 -07:00
parent f6fd221a54
commit fdb541b244
376 changed files with 29906 additions and 671 deletions

20
etc/skel/.xinitrc Executable file
View File

@ -0,0 +1,20 @@
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)
XDG_CONFIG_HOME="$HOME/.config"
export XDG_CONFIG_HOME
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*; do
[ -x "$f" ] && . "$f"
done
unset f
fi
if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval `dbus-launch --sh-syntax --exit-with-session`
fi
openbox-session