-
Notifications
You must be signed in to change notification settings - Fork 18
/
hardcodefixer-v1.sh
executable file
·82 lines (55 loc) · 2.5 KB
/
hardcodefixer-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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/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.
#
##################################################################################################################
# if there is already a folder, delete or else do nothing
echo "The script will install itself in the /tmp/hardcode-fixer folder"
echo "It will run from there"
echo "Upon next boot the tmp folder will be empty again"
echo "#################################################"
[ -d /tmp/hardcode-fixer ] && rm -rf "/tmp/hardcode-fixer" || echo ""
echo "################################################################"
echo "Checking if git is installed"
echo "Install git for an easy installation"
# G I T
# check if git is installed
if which git > /dev/null; then
echo "git was installed. Proceding..."
else
echo "################################################################"
echo "installing git for this script to work"
echo "################################################################"
sudo apt-get install git -y
fi
git clone https://github.com/Foggalong/hardcode-fixer /tmp/hardcode-fixer
echo "################################################################"
echo "Checking if curl is installed"
echo "Install curl for an easy installation"
# curl
# check if curl is installed
if which curl > /dev/null; then
echo "curl was installed. Proceding..."
else
echo "################################################################"
echo "installing curl for this script to work"
echo "################################################################"
sudo apt-get install curl -y
fi
echo "#################################################"
echo "Checking and changing all hardcoded icons"
echo "#################################################"
sudo /tmp/hardcode-fixer/fix.sh
rm -rf /tmp/hardcode-fixer
echo
echo
echo "################################################################"
echo "################### Hardcode fixer done ####################"
echo "################################################################"