We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff5d9a8 commit 6755e1cCopy full SHA for 6755e1c
vivek.sh
@@ -1,18 +1,26 @@
1
#!/bin/bash
2
-figlet -f ANSI-Shadow Aryan|lolcat
3
-figlet -w 100 -f ANSI-Shadow Technologies|lolcat
4
5
-PS3="Welcome Vivek : "
+PS3="Welcome Vivek"
6
+# Print a stylish welcome message
+echo -e "\e[1m\e[32mWelcome to the Vivek Shell!\e[0m"
7
+
8
+# Ask the user to select a language
9
select lng in Termux Ubantu
10
do
11
case $lng in
-
12
13
"Termux")
14
+ echo "Exiting..."
15
exit ;;
16
"Ubantu")
- bash ./start-ubuntu20.sh;;
17
+ echo "Starting Ubuntu..."
18
+ bash ./start-ubuntu22.sh;;
19
*)
- echo "Ooops";;
20
+ echo "Ooops, invalid selection."
21
+ echo "Please select one of the following options:"
22
+ echo " * Termux"
23
+ echo " * Ubantu"
24
+ ;;
25
esac
26
done
0 commit comments