nix-config/xinit/.xinitrc

19 lines
419 B
Plaintext
Raw Normal View History

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
# 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
# vim:ft=sh