diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-25 19:03:40 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-25 19:03:40 +0200 |
commit | 89b0112d8acdf559660cbd60c5d3d98fefe5ccaf (patch) | |
tree | 6e9f4f8c1f23d3a9b676ad90fbfe39f3fe14c58e | |
parent | 23ceb3e5f1e3bd061ac34b08d2bf488e371f2c08 (diff) | |
download | dotfiles-89b0112d8acdf559660cbd60c5d3d98fefe5ccaf.tar.gz |
xinitrc fix
-rw-r--r-- | .xinitrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |