aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-08-13 19:08:12 +1200
committerTom Ryder <tom@sanctum.geek.nz>2022-08-13 19:08:12 +1200
commit0ea8e7ef0ea081ed4fbc8825f90666a22a999037 (patch)
tree2160e79862982f4a663e3d5e9363df4f3016b40e
parentCorrect xterm color name (diff)
downloaddotfiles-0ea8e7ef0ea081ed4fbc8825f90666a22a999037.tar.gz
dotfiles-0ea8e7ef0ea081ed4fbc8825f90666a22a999037.zip
Remove loading ~/.xprofile.d scripts
I'll add it back if I ever actually need it.
-rw-r--r--x/xprofile7
1 files changed, 0 insertions, 7 deletions
diff --git a/x/xprofile b/x/xprofile
index 454700ff..354df44b 100644
--- a/x/xprofile
+++ b/x/xprofile
@@ -3,10 +3,3 @@
# 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