diff options
| author | 2020-04-26 21:01:48 -0700 | |
|---|---|---|
| committer | 2020-04-26 21:34:57 -0700 | |
| commit | 5bb0014265536ee59a9d63625f716257bdd2785c (patch) | |
| tree | 90843b8d8f1c1d48440cf1514ff0f045b1e0b2f2 /x11/.xsession | |
| parent | 81c8b04af6f4d7db98be014e10f84dcdfbd363b9 (diff) | |
| download | new-dotfiles-5bb0014265536ee59a9d63625f716257bdd2785c.tar.gz new-dotfiles-5bb0014265536ee59a9d63625f716257bdd2785c.zip | |
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.
Diffstat (limited to 'x11/.xsession')
| -rwxr-xr-x | x11/.xsession | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11/.xsession b/x11/.xsession new file mode 100755 index 0000000..70efe31 --- /dev/null +++ b/x11/.xsession @@ -0,0 +1,20 @@ +#!/usr/bin/env sh + +# shellcheck source=../lib/usr/lib/sh/loading.sh +. ~/usr/lib/sh/loading.sh + +xrdb -cpp m4 -merge "${HOME}/.config/X11/Xresources" \ + -I"${HOME}/.config/X11/Xresources.d" + +load_machine_config ".config/X11/machines" +load_config_directory ".config/X11/Xsession.d" + +command -v kdeconnect-indicator \ + && (pgrep kdeconnect-indicator \ + || { kdeconnect-indicator & }) + +command -v syncthing-gtk \ + && (pgrep syncthing-gtk \ + || { syncthing-gtk & }) + +command -v unclutter && (pgrep unclutter || unclutter --fork) |
