From 5bb0014265536ee59a9d63625f716257bdd2785c Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 26 Apr 2020 21:01:48 -0700 Subject: Reorganize xsession and Xresources - Add xsession. Instead of requiring each of my machines to setup their own ‘.xsession’ add one that should work for all of them. - Use M4 for the Xresources database. I didn’t want the X11 project to be aware of all the configuration files that could be added in there and I was able to figure out how to have it load all of the configuration files in the ‘Xresources.d’ directory. Now each configuration can inject properties into the X resources database. - Have ‘.xsession’ load all of the scripts in ‘.config/X11/Xsession.d’. Each configuration can now inject some script to run when X starts. - Have ‘.xsession’ load a machine-specific script so that each machine can override what it does when X starts. --- x11/.config/X11/Xresources | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 x11/.config/X11/Xresources (limited to 'x11/.config/X11/Xresources') diff --git a/x11/.config/X11/Xresources b/x11/.config/X11/Xresources new file mode 100644 index 0000000..a3f34cb --- /dev/null +++ b/x11/.config/X11/Xresources @@ -0,0 +1,35 @@ +define(`prefix', `$HOME/.config/X11/Xresources.d/')dnl +define(`resources', `esyscmd(`ls -m ' prefix ` | tr -d \\n')')dnl +define(`includeall', `ifelse($1, `', `', `include($1)includeall(shift($@))')')dnl +dnl +dnl Background colors +define(`bgdefault', `#111414')dnl +define(`bgbright', `#3d3d3d')dnl +define(`bgdim', `#222222')dnl +define(`bgred', `#3f1a1a')dnl +define(`bgorange', `#3f321f')dnl +define(`bgyellow', `#343922')dnl +define(`bggreen', `#263f1f')dnl +define(`bgturquoise', `#1f3f2c')dnl +define(`bgcyan', `#1f3f3f')dnl +define(`bgblue', `#1f2c3f')dnl +define(`bgpurple', `#2f2a3f')dnl +define(`bgmagenta', `#381f3f')dnl +define(`bgpink', `#3f1f32')dnl +dnl +dnl Foreground colors +define(`fgdefault', `#bfbfbf')dnl +define(`fgbright', `#ededed')dnl +define(`fgdim', `#969696')dnl +define(`fgred', `#a85454')dnl +define(`fgorange', `#a88654')dnl +define(`fgyellow', `#8d995c')dnl +define(`fggreen', `#65a854')dnl +define(`fgturquoise', `#54a875')dnl +define(`fgcyan', `#54a8a8')dnl +define(`fgblue', `#5476a8')dnl +define(`fgpurple', `#7d71a8')dnl +define(`fgmagenta', `#9754a8')dnl +define(`fgpink', `#a85487')dnl +dnl +includeall(resources) -- cgit v1.2.3-54-g00ecf