diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-05-26 08:54:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-05-26 08:54:40 -0300 |
commit | bb38ca2f992dd39289e0381e7fcf547f3d9e939a (patch) | |
tree | 6b63fd3375aad4da7aac4679e743153906934612 | |
parent | fe8cfacdfc9b0222640e8886ba280f1928bdf70c (diff) | |
download | xsession-bb38ca2f992dd39289e0381e7fcf547f3d9e939a.tar.gz xsession-bb38ca2f992dd39289e0381e7fcf547f3d9e939a.tar.bz2 |
Adds .custom/xsession-ready support
-rwxr-xr-x | xsessionrc.dot.link | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xsessionrc.dot.link b/xsessionrc.dot.link index 0febb1f..650ad71 100755 --- a/xsessionrc.dot.link +++ b/xsessionrc.dot.link @@ -20,7 +20,7 @@ if [ -e "/usr/bin/xscreensaver" ]; then xscreensaver -no-splash & fi -# Custom +# Custom config if [ -e "$HOME/.custom/xsession" ]; then . $HOME/.custom/xsession fi @@ -166,3 +166,8 @@ export _JAVA_AWT_WM_NONREPARENTING=1 if [ "$OSVERSION" = "7" ] || [ "$START_WINDOW_MANAGER" = "true" ]; then $WINDOW_MANAGER fi + +# Post processing +if [ -e "$HOME/.custom/xsession-ready" ]; then + . $HOME/.custom/xsession-ready +fi |