2018-04-12 05:34:23 +02:00
|
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
|
|
# Copyright (C) 2017-2018 Donovan Glover
|
|
|
|
|
2018-10-07 23:59:31 +02:00
|
|
|
# Source the .Xresources file
|
2017-12-12 05:49:30 +01:00
|
|
|
xrdb -merge ~/.Xresources
|
|
|
|
|
|
|
|
# Source the files in the xinitrc.d directory
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
done
|
|
|
|
unset f
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Start the window manager
|
2018-01-04 05:07:10 +01:00
|
|
|
exec bspwm
|
2017-12-12 05:49:30 +01:00
|
|
|
|
2018-10-07 23:59:31 +02:00
|
|
|
# vim:ft=sh
|