-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.sh
executable file
·37 lines (32 loc) · 1.22 KB
/
go.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/bash
echo "Installing packages in the system requires sudo permission."
read -rp "Do you want to install packages?: (Y/n): " user_response
if [ "$user_response" = "y" ] || [ "$user_response" = "Y" ] || [ "$user_response" = "" ]; then
SUDO_VAR="yes"
else
SUDO_VAR="no"
fi
# Install commmon software
bash install_apps.sh $SUDO_VAR
# Modify desktop appearence and panel
bash desktop_setup.sh $SUDO_VAR
# Install and configure Plank dock
bash plank_setup.sh $SUDO_VAR
# Install and configure Conky
bash conky_setup.sh $SUDO_VAR
# Modify general appearence
bash theme_setup.sh $SUDO_VAR
# Need to log-out
display_banner() {
echo "*************************************************"
echo "* *"
echo "* Customization completed *"
echo "* *"
echo "* IT IS NECESSARY TO LOG OUT *"
echo "* *"
echo "* The current repository can be deleted *"
echo "* *"
echo "*************************************************"
}
# Call the function to display the banner
display_banner