Split up configs into seperate packages

This commit is contained in:
natemaia
2018-12-13 22:02:16 -08:00
parent 98ae5d737b
commit ccdab4657c
67 changed files with 6 additions and 1570 deletions

19
base/.xinitrc Executable file
View File

@ -0,0 +1,19 @@
#!/bin/sh
# this file is executed when calling startx
# default arch xinit scripts
if [ -d /etc/X11/xinit/xinitrc.d ]; then
for f in /etc/X11/xinit/xinitrc.d/*.sh; do
[ -x "$f" ] && . "$f"
done
fi
# user init scripts and settings
[ -f /etc/X11/xinit/.Xmodmap ] && xmodmap /etc/X11/xinit/.Xmodmap
[ -f ~/.Xmodmap ] && xmodmap ~/.Xmodmap
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
[ -f ~/.xprofile ] && . ~/.xprofile
# launch the session, don't put commands below the exec line
exec openbox-session