From 49e9adf0a54aaecf343b36254afb94025d5036cf Mon Sep 17 00:00:00 2001 From: David Young Date: Tue, 24 Mar 2026 10:42:39 -0600 Subject: [PATCH] fix install to add windows install --- install.sh | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/install.sh b/install.sh index 3fde07a..c308e93 100755 --- a/install.sh +++ b/install.sh @@ -86,21 +86,12 @@ echo "Installing stand-alone compiled applications..." . install-compiled.sh +echo "Installing Windows-only applications..." + +. install-windows-apps.sh + +echo "Installing not1mm..." + curl -LsSf uvx.sh/not1mm/install.sh | sh -if ! ls /usr/lib/modules/$(uname -r) > /dev/null 2>&1; then - echo "HamPack is installed. A newer kernel has been installed, a reboot is recommended." - read -rp "Reboot now? [y/N] " response - case "$response" in - [yY][eE][sS]|[yY]) - echo "Rebooting..." - sudo reboot - ;; - *) - echo "Reboot skipped. Please remember to reboot when convenient." - exit 0 - ;; - esac -else - echo "Ham Pack is installed. Reboot when convenient." -fi \ No newline at end of file +echo "Ham Pack is installed. You may want to restart existing applications when convenient." \ No newline at end of file