From 99f90d47c868f8da8724cda54a3db4f18b41f7e3 Mon Sep 17 00:00:00 2001 From: "Jean (east-high-Nerd)" Date: Wed, 31 Dec 2025 15:23:43 -0500 Subject: [PATCH] Added elementaryOS to have 'home-fix.sh' run on first boot like Debian --- home-fix-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-fix-setup.sh b/home-fix-setup.sh index 1dbf819..46e0ad9 100755 --- a/home-fix-setup.sh +++ b/home-fix-setup.sh @@ -44,7 +44,7 @@ if [[ "${ID}" == 'fedora' ]]; then printf \ "@reboot\tsudo -u ${username} '${baseDir}/finalize.sh'\n@reboot\t/usr/bin/home-fix.sh\n" | \ tee /var/spool/cron/root &> /dev/null -elif [[ "${ID}" == 'debian' ]]; then +elif [[ "${ID}" == 'debian' ]] || [[ "${ID}" == 'elementary' ]]; then printf \ "@reboot\tsudo -u ${username} '${baseDir}/finalize.sh'\n@reboot\t/usr/bin/home-fix.sh\n" | \ tee /var/spool/cron/crontabs/root &> /dev/null