-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathinstall-debian.sh
46 lines (35 loc) · 1.35 KB
/
install-debian.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
#!/bin/bash
user_name="$USER"
#Global menu
sudo apt install xfce4-appmenu-plugin appmenu-* -y
#Xfce4 plugins
sudo apt install xfce4-indicator-plugin xfce4-statusnotifier-plugin xfce4-power-manager xfce4-pulseaudio-plugin xfce4-notifyd -y
#GTK theme
git clone https://github.com/jothi-prasath/WhiteSur-gtk-theme.git --depth=1
WhiteSur-gtk-theme/install.sh -l -c dark -c light
#Icons
git clone https://github.com/vinceliuice/WhiteSur-icon-theme.git --depth=1
WhiteSur-icon-theme/install.sh
#Cursors
git clone https://github.com/vinceliuice/WhiteSur-cursors.git --depth=1
mkdir -p ~/.local/share/icons/
cp -r WhiteSur-cursors/dist/ ~/.local/share/icons/
#Wallpapers
mkdir -p ~/Pictures/
cp -r wallpaper/* ~/Pictures/
#Plank themes
mkdir -p ~/.local/share/plank/themes/
cp -rp WhiteSur-gtk-theme/src/other/plank/* ~/.local/share/plank/themes/
cp -rp plank/mcOS-BS-iMacM1-Black/ ~/.local/share/plank/themes/
#Xfce4-panel
sudo killall xfce4-panel
mkdir -p ~/.config/xfce4/xfconf/xfce-perchannel-xml/
cp -rp xfce4-panel/xfce4-panel.xml ~/.config/xfce4/xfconf/xfce-perchannel-xml/
#Applying theme
xfconf-query -c xsettings -p /Net/ThemeName -s "WhiteSur-dark"
#Icon theme
xfconf-query -c xsettings -p /Net/IconThemeName -s 'WhiteSur-dark'
#Cursor theme
xfconf-query -c xsettings -p /Gtk/CursorThemeName -s "WhiteSur Cursors"
echo "SmallSur installed"
echo "Reboot You system"