-
Notifications
You must be signed in to change notification settings - Fork 27
/
install-gtk-arc-theme-v1.sh
executable file
·31 lines (24 loc) · 1.22 KB
/
install-gtk-arc-theme-v1.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
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
#https://github.com/horst3180/arc-theme
rm -rf /tmp/arc-theme
sudo apt-get install build-essential autoconf automake pkg-config libgtk-3.0 libgtk-3-dev -y
git clone https://github.com/horst3180/arc-theme --depth 1 /tmp/arc-theme
cd /tmp/arc-theme
sh autogen.sh --prefix=/usr
sudo make install
rm -rf /tmp/arc-theme
# sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark}
echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"