From b259435b91d416127477c4af899c072b1e41e5eb Mon Sep 17 00:00:00 2001 From: sose Date: Sat, 5 Sep 2020 03:16:49 -0700 Subject: [PATCH] removed irc config until further notice --- setup.sh | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/setup.sh b/setup.sh index 4a63d62..40c6c7f 100755 --- a/setup.sh +++ b/setup.sh @@ -35,33 +35,33 @@ echo "Connection success!" echo "Configuring user..." configure_user || fail echo "User configured!" -clear -echo "=== IRC Configuration ===" -echo "Now we will begin configuring a WeeChat IRC relay" -echo "Select the option that applies to you:" -echo "1. I have a WeeChat relay configured on my chosen tilde" -echo "2. I do not have a WeeChat relay configured on my chosen tilde" -read -r choice -while : -do - case "$choice" in - "1") - clear - set_relay_config "existing" - break - ;; - "2") - clear - echo "Since no WeeChat relay exists, a new one will be configured" - echo "First, provide a port number and password for this relay" - set_relay_config "new" - break - ;; - "*") - echo "Please enter a valid option" - ;; - esac -done +#clear +#echo "=== IRC Configuration ===" +#echo "Now we will begin configuring a WeeChat IRC relay" +#echo "Select the option that applies to you:" +#echo "1. I have a WeeChat relay configured on my chosen tilde" +#echo "2. I do not have a WeeChat relay configured on my chosen tilde" +#read -r choice +#while : +#do +# case "$choice" in +# "1") +# clear +# set_relay_config "existing" +# break +# ;; +# "2") +# clear +# echo "Since no WeeChat relay exists, a new one will be configured" +# echo "First, provide a port number and password for this relay" +# set_relay_config "new" +# break +# ;; +# "*") +# echo "Please enter a valid option" +# ;; +# esac +#done echo "All done! Enjoy using Tildelinux!" rm ./setup_incomplete systemctl restart 'getty@tty1.service'