-
Notifications
You must be signed in to change notification settings - Fork 0
/
Personalize.sh
120 lines (97 loc) · 4.28 KB
/
Personalize.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
############################################################
# Personalization Script
#
# --- CHANGELOG ---
#
# 1.3 (05-November-2024):
# * Add commands to install Breeze Transparent
#
# 1.2 (13-September-2024):
# * Add commands to download and install
# Posy's Cursor Set
# * Add separators to make the script more readable
#
# 1.1 (14-August-2024):
# * Remove MacSonoma theme
# * Add Colloid Kvantum and GTK themes
# (This is done so that the UI looks consistent)
#
# 1.0 (02-August-2024):
# * Initial Commit
############################################################
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Kvantum Manager"
# Install Kvantum Manager & GTK theme requirements
sudo zypper in -y kvantum-manager gtk2-engine-murrine sassc
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: KDE & Kvantum Theme"
# Download the Colloid Theme (Thanks Vinceliuice!)
curl -LJO https://github.com/vinceliuice/Colloid-kde/archive/refs/heads/main.zip
# Unzip the dowloaded file
unzip ./Colloid-kde-main.zip
# Install the KDE and Kvantum theme for ALL users (remove sudo if you want to install to current user only)
sudo sh ./Colloid-kde-main/install.sh
# Delete the directory to save space
rm -rf ./Colloid-kde-main
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Colloid GTK Theme"
# Download the Colloid Theme (Thanks Vinceliuice!)
curl -LJO https://github.com/vinceliuice/Colloid-gtk-theme/archive/refs/heads/main.zip
# Unzip the dowloaded file
unzip ./Colloid-gtk-theme-main.zip
# Install the KDE and Kvantum theme
sudo sh ./Colloid-gtk-theme-main/install.sh
# Delete the directory to save space
rm -rf ./Colloid-gtk-theme-main
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Colloid Icon Theme"
# Download the Colloid Icon Theme (Thanks Vinceliuice!)
curl -LJO https://github.com/vinceliuice/Colloid-icon-theme/archive/refs/heads/main.zip
# Unzip the dowloaded file
unzip ./Colloid-icon-theme-main.zip
# Install the KDE and Kvantum theme
sudo sh ./Colloid-icon-theme-main/install.sh
# Delete the directory to save space
rm -rf ./Colloid-icon-theme-main
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Breeze Transparent Plasma Style"
# Download the Breeze Transparent Plasma Style (Thanks Gumbachi!)
curl -LJO https://github.com/Gumbachi/Breeze-Transparent/archive/refs/heads/main.zip
# Unzip the dowloaded file
unzip ./Breeze-Transparent-main.zip
# Install the Plasma Style
sudo cp -r ./Breeze-Transparent-main /usr/share/plasma/desktoptheme/
# Delete the directory to save space
rm -rf ./Breeze-Transparent-main
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Posy's Cursor Set"
# Download the Posy's Cursor Set (Thanks Michel "Posy" de Boer and Simtrani for porting this to Linux!)
curl -LJO https://github.com/simtrami/posy-improved-cursor-linux/archive/refs/heads/main.zip
# Unzip the dowloaded file
unzip ./posy-improved-cursor-linux-main.zip
# Clean up unwanted directories and files
rm -rf ./posy-improved-cursor-linux-main/readme_files
rm -rf ./posy-improved-cursor-linux-main/README.md
# Install the cursor sets
sudo cp -r ./posy-improved-cursor-linux-main/* /usr/share/icons
# Delete the directory
rm -rf ./posy-improved-cursor-linux-main/
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Custom Wallpapers"
sudo cp ./custom-wallpapers/* /usr/share/wallpapers
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Sound Theme"
# Install the custom MacOcean theme (Ocean theme with the Mac startup sound)
sudo cp -r ./MacOcean /usr/share/sounds
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Installing: Login Task"
# Create directory '~/.scripts'
mkdir ~/.scripts
# Copy the login_tasks.sh file to '~/.scripts/' directory
cp login_tasks.sh ~/.scripts/
# ---------------------------------------------------------- #
echo "[ INFORMATION ] Cleaning Up ZIP Files"
# remove all zip files in the directory
rm -rf ./*.zip
# ---------------------------------------------------------- #