aboutsummaryrefslogtreecommitdiff
path: root/x/xprofile
diff options
context:
space:
mode:
Diffstat (limited to 'x/xprofile')
-rw-r--r--x/xprofile7
1 files changed, 7 insertions, 0 deletions
diff --git a/x/xprofile b/x/xprofile
index 354df44b..454700ff 100644
--- a/x/xprofile
+++ b/x/xprofile
@@ -3,3 +3,10 @@
# Update browser, since .profile set this to a curses browser on login
# shellcheck disable=SC2034
BROWSER=x-www-browser
+
+# Load all supplementary scripts in ~/.xprofile.d
+for sh in "$HOME"/.xprofile.d/*.sh ; do
+ [ -e "$sh" ] || continue
+ . "$sh"
+done
+unset -v sh