From 2e44f3440aaec17bf63f816645d860eb7d66d88b Mon Sep 17 00:00:00 2001 From: ION606 Date: Fri, 21 Jun 2024 15:52:13 +0000 Subject: [PATCH] Update setup.sh --- setup.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index f8a9ed3..5c7250c 100644 --- a/setup.sh +++ b/setup.sh @@ -35,9 +35,11 @@ echo "This script will install and do the following: - Remove Thunar and Foot - Clean up and update system -Do you want to proceed? (Y/N): " +Do you want to proceed? (Y/N, default Y): " read answer -if [ "$answer" != "Y" ]; then +answer=${answer:-y} + +if [ "$answer" != "y" ]; then echo "Installation aborted." exit fi