From d5f93d51968cdf158037aebbddf6ce5d336f336d Mon Sep 17 00:00:00 2001 From: PrincessPi3 Date: Fri, 8 Aug 2025 20:45:28 -0600 Subject: [PATCH] 1754707529 --- customscripts/configure_webhook.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/customscripts/configure_webhook.sh b/customscripts/configure_webhook.sh index 882cc2c..19c3de4 100644 --- a/customscripts/configure_webhook.sh +++ b/customscripts/configure_webhook.sh @@ -10,6 +10,8 @@ else username="$SUDO_USER" fi +echo -e "\nConfigure Discord Webhook Settings" + # get webhook url echo -e "\nEnter Discord Webhook URL" read webhook_url @@ -23,11 +25,11 @@ sudo bash -c "echo '$webhook_url' > $finalDir/webhook.txt" sudo bash -c "echo '$webhook_tag' > $finalDir/tag.txt" # fix ownership -echo "Changing ownership of $finalDir to $username:$username recursively" +echo -e "\nChanging ownership of $finalDir to $username:$username recursively" sudo chown -R $username:$username $finalDir # fix perms -echo "Setting perms of $finalDir and contents to 775" +echo -e "\nSetting perms of $finalDir and contents to 775" sudo chmod -R 775 $finalDir echo -e "\n\nDone! Restart shell:\n\texec \"\$SHELL\"\n"