Execute autostart files instead of sourcing them.

This commit is contained in:
2016-08-29 22:44:51 +02:00
parent 715cff16aa
commit 3440d950a7

View File

@@ -28,7 +28,7 @@ autostart() {
for f in "$HOME/.autostart/"*.sh ; do
if [[ -x "$f" ]] ; then
log "Executing autostart file \"$f\""
. "$f"
"$f"
fi
done
fi