From 3e248216375c9c3e0e60e23be99ad5f84daa14ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=C3=A4tzold?= Date: Thu, 9 Apr 2026 14:23:31 +0200 Subject: [PATCH] Autostart script: Corrected Folder and Message --- client_software/0040_autostart_logon_script/user_run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client_software/0040_autostart_logon_script/user_run.sh b/client_software/0040_autostart_logon_script/user_run.sh index 3ac534f..30734b6 100755 --- a/client_software/0040_autostart_logon_script/user_run.sh +++ b/client_software/0040_autostart_logon_script/user_run.sh @@ -4,9 +4,9 @@ # #Copy current Version of Autostart-Entry rm -f "${HOME}/.config/autostart/logon_script.sh.desktop" -cp "${SCRIPTPATH}/logon_script.sh.desktop" "${HOME}/.config/autostart" +cp "logon_script.sh.desktop" "${HOME}/.config/autostart" if [ $? -ne 0 ]; then - elog_add "Failed to setup autostart- entry. Check your installation of these scripts." + echo "Failed to setup autostart- entry. Check your installation of these scripts." echo "Press any key to continue" && read -n 1 -s -r && exit 1 fi exit 0