-
Notifications
You must be signed in to change notification settings - Fork 0
/
updated_install_me.sh
76 lines (62 loc) · 1.98 KB
/
updated_install_me.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
# Color variables
RED='\033[00;31m'
GREEN='\033[00;32m'
YELLOW='\033[00;33m'
BLUE='\033[00;34m'
PURPLE='\033[00;35m'
CYAN='\033[00;36m'
LIGHTGRAY='\033[00;37m'
LRED='\033[01;31m'
LGREEN='\033[01;32m'
LYELLOW='\033[01;33m'
LBLUE='\033[01;34m'
LPURPLE='\033[01;35m'
LCYAN='\033[01;36m'
WHITE='\033[01;37m'
NC='\033[0m' # No Color
# Function to display larger text
print_large_text() {
local message="$1"
local length=${#message}
local line=""
for ((i = 0; i < length; i++)); do
line+="="
done
echo -e "\n${line}"
echo -e "${message}"
echo -e "${line}\n"
}
# Update and install GNOME Tweaks and Telegram Desktop
sudo apt-get update
sudo apt install telegram-desktop -y
sudo apt install gnome-tweaks -y
# Install Flatpak Extension Manager
flatpak install flathub com.mattjakeman.ExtensionManager -y
# Clone and install Fluent GTK theme
print_large_text "${GREEN}Running Fluent GTK theme installation script...${NC}"
git clone https://github.com/vinceliuice/Fluent-gtk-theme.git
cd Fluent-gtk-theme
./install.sh
cd ..
# Clone and install Pop Cosmic Applications - Yaru Colors
git clone https://github.com/Stradios/pop-cosmic-applications-yaru-colors.git
cd pop-cosmic-applications-yaru-colors
./install.sh
cd ..
# Clone and install Flat-Remix-Pop-Blue-Dark icon pack
print_large_text "${GREEN}Running Flat-Remix-Pop-Blue-Dark icon pack installation script...${NC}"
git clone https://github.com/Stradios/Flat-Remix-Pop-Blue-Dark.git
# Clone and install Segoe UI Linux font
print_large_text "${GREEN}Running Segoe UI Linux installation script...${NC}"
git clone https://github.com/SpudGunMan/segoe-ui-linux
cd segoe-ui-linux
sudo ./install.sh
cd ..
# Copy wallpapers
cp -r ~/Downloads/one_pop_install_all_you_need/wallpaper ~/Pictures/
# Handle additional configurations (login and extensions setup)
cd ~/Downloads/one_pop_install_all_you_need/login/
cd ~/Downloads/one_pop_install_all_you_need/Extentins-config
# Script execution complete
print_large_text "${GREEN}Setup Complete!${NC}"