From 44dd4f977c8047a9b6b35d90ca3510e34672ce1a Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 11 Jan 2021 20:54:27 +0100 Subject: [PATCH] Fix Welcome Wizard being shown more than once --- overlays/uzip/hello/files/usr/local/bin/start-hello | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/uzip/hello/files/usr/local/bin/start-hello b/overlays/uzip/hello/files/usr/local/bin/start-hello index 3fbec252..89eef80e 100755 --- a/overlays/uzip/hello/files/usr/local/bin/start-hello +++ b/overlays/uzip/hello/files/usr/local/bin/start-hello @@ -183,7 +183,7 @@ redshift -l$(getlalo) & # Welcome Wizard uid="$(id -u)" if [ -e /System/Welcome.app/Welcome ] ; then - if [ ! -e "~/.config/hello/.helloSetupDone" ] ; then + if [ ! -e "${HOME}/.config/hello/.helloSetupDone" ] ; then /System/Welcome.app/Welcome fi fi