Files
fedora-OEMDRV/client_software/0040_autostart_logon_script/user_run.sh
T
2026-04-09 14:17:53 +02:00

13 lines
466 B
Bash
Executable File

#!/usr/bin/env sh
# SPDX-FileCopyrightText: Daniel Pätzold
# SPDX-License-Identifier: AGPL-3.0-or-later
#
#Copy current Version of Autostart-Entry
rm -f "${HOME}/.config/autostart/logon_script.sh.desktop"
cp "${SCRIPTPATH}/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 "Press any key to continue" && read -n 1 -s -r && exit 1
fi
exit 0