-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons-sardi-v3.sh
executable file
·34 lines (26 loc) · 1.26 KB
/
icons-sardi-v3.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
#!/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.
#
##################################################################################################################
# cleaning tmp
[ -d /tmp/sardi ] && rm -rf /tmp/sardi
# if there is no hidden folder then make one
[ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons"
wget -O /tmp/sardi.tar.gz "https://sourceforge.net/projects/sardi/files/latest/download?source=files"
mkdir /tmp/sardi
tar -zxf /tmp/sardi.tar.gz -C /tmp/sardi
rm /tmp/sardi.tar.gz
cp -rf /tmp/sardi/* ~/.icons/
# cleaning tmp
[ -d /tmp/sardi ] && rm -rf /tmp/sardi
echo "################################################################"
echo "################### icons sardi done ######################"
echo "################################################################"