aboutsummaryrefslogtreecommitdiff
path: root/.xinitrc
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2021-09-25 19:03:40 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2021-09-25 19:03:40 +0200
commit89b0112d8acdf559660cbd60c5d3d98fefe5ccaf (patch)
tree6e9f4f8c1f23d3a9b676ad90fbfe39f3fe14c58e /.xinitrc
parent23ceb3e5f1e3bd061ac34b08d2bf488e371f2c08 (diff)
downloaddotfiles-89b0112d8acdf559660cbd60c5d3d98fefe5ccaf.tar.gz
xinitrc fix
Diffstat (limited to '.xinitrc')
-rw-r--r--.xinitrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.xinitrc b/.xinitrc
index 935cb33..dffc2c1 100644
--- a/.xinitrc
+++ b/.xinitrc
@@ -16,7 +16,7 @@ if [ -f ~/.files ]; then
for f in $DOTFILEBASE/xinitrc.d/*; do
# Some scripts require bash, but .xinitrc is sourced from sh.
# If a script is marked executable, it is executed instead of sourced.
- [ -x "$f" ] && exec "$f" || . "$f"
+ [ -x "$f" ] && "$f" || . "$f"
done
unset f
fi