forked from milq/milq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-numix.sh
33 lines (25 loc) · 1.17 KB
/
install-numix.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
# Prerequisite
sudo apt-get install -y murrine-themes
# I do not use 'local' because it does not work properly (uncomment when it is fixed)
# if [ ! -d '/usr/local/share/themes' ]; then
# sudo mkdir '/usr/local/share/themes'
# fi
cd /usr/share/themes/
sudo rm -rf Numix
sudo git clone https://github.com/shimmerproject/Numix.git
if [ ! -d '/usr/local/share/icons' ]; then
sudo mkdir '/usr/local/share/icons'
fi
cd /usr/local/share/icons/
sudo rm -rf numix-icon-theme numix-icon-theme-circle Numix Numix-Light Numix-Circle Numix-Circle-Light
sudo git clone https://github.com/numixproject/numix-icon-theme.git
sudo mv numix-icon-theme/Numix ./
sudo mv numix-icon-theme/Numix-Light ./
sudo git clone https://github.com/numixproject/numix-icon-theme-circle.git
sudo mv numix-icon-theme-circle/Numix-Circle ./
sudo mv numix-icon-theme-circle/Numix-Circle-Light ./
sudo rm -rf numix-icon-theme numix-icon-theme-circle
# Activate Numix's theme, WM, and icons in Xfce (uncomment these lines if you use Xfce):
# xfconf-query -c xsettings -p /Net/ThemeName -s "Numix"
# xfconf-query -c xfwm4 -p /general/theme -s "Numix"
# xfconf-query -c xsettings -p /Net/IconThemeName -s "Numix-Circle"