forked from erikdubois/Ultimate-Linux-Mint-18-Cinnamon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons-sardi-extra-v2.sh
executable file
·32 lines (22 loc) · 1.16 KB
/
icons-sardi-extra-v2.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
#!/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.
#
##################################################################################################################
rm -rf /tmp/Sardi-Extra
git clone https://github.com/erikdubois/Sardi-Extra /tmp/Sardi-Extra
find /tmp/Sardi-Extra -maxdepth 1 -type f -exec rm -rf '{}' \;
# if there is no hidden folder then make one
[ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons"
cp -r /tmp/Sardi-Extra/* ~/.icons/
rm -rf /tmp/Sardi-Extra
echo "################################################################"
echo "################### T H E E N D ######################"
echo "################################################################"