-
Notifications
You must be signed in to change notification settings - Fork 25
/
install-arc-flatabulous-theme-v1.sh
executable file
·46 lines (32 loc) · 1.89 KB
/
install-arc-flatabulous-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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/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/andreisergiu98/arc-flatabulous-theme
rm -rf /tmp/arc-flatabulous-theme
sudo apt-get install -y autoconf automake pkg-config libgtk-3-dev git
git clone https://github.com/andreisergiu98/arc-flatabulous-theme /tmp/arc-flatabulous-theme
cd /tmp/arc-flatabulous-theme
./autogen.sh --prefix=/usr
sudo make install
#sudo make uninstall
# make sure you have the arc theme installed
# linux mint 18.1 has 3.2 cinnamon
# we need an updated cinnammon.css otherwise the look is not the way it was intended
sudo mv /usr/share/themes/Arc-Flatabulous/cinnamon/cinnamon.css /usr/share/themes/Arc-Flatabulous/cinnamon/cinnamon.css.backup
sudo cp /usr/share/themes/Arc/cinnamon/cinnamon.css /usr/share/themes/Arc-Flatabulous/cinnamon/cinnamon.css
sudo mv /usr/share/themes/Arc-Flatabulous-Dark/cinnamon/cinnamon.css /usr/share/themes/Arc-Flatabulous-Dark/cinnamon/cinnamon.css.backup
sudo cp /usr/share/themes/Arc-Dark/cinnamon/cinnamon.css /usr/share/themes/Arc-Flatabulous-Dark/cinnamon/cinnamon.css
# cleanup
rm -rf /tmp/arc-flatabulous-theme
echo "################################################################"
echo "############# arc flatabulous installed ######################"
echo "################################################################"