From 3440d950a7d50eac7dc0f4677abd368ab401045b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Mon, 29 Aug 2016 22:44:51 +0200 Subject: [PATCH] Execute autostart files instead of sourcing them. --- x/xinitrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/xinitrc b/x/xinitrc index 2096be4..a746753 100755 --- a/x/xinitrc +++ b/x/xinitrc @@ -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