-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinstall.sh
executable file
·156 lines (130 loc) · 3.98 KB
/
install.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#!/bin/bash
#
# Legal Stuff:
#
# This file is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free Software
# Foundation; version 3.
#
# This file is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along with
# this program; if not, see <https://www.gnu.org/licenses/lgpl-3.0.txt>
## Install script
##
## usage: ./install.sh [options]
##
## options:
## -u, --uninstall Uninstall this icon pack [default: 0]
# CLInt GENERATED_CODE: start
# Default values
_uninstall=0
# Converting long-options into short ones
for arg in "$@"; do
shift
case "$arg" in
"--uninstall") set -- "$@" "-u";;
*) set -- "$@" "$arg"
esac
done
function print_illegal() {
echo Unexpected flag in command line \"$@\"
}
# Parsing flags and arguments
while getopts 'hu' OPT; do
case $OPT in
h) sed -ne 's/^## \(.*\)/\1/p' $0
exit 1 ;;
u) _uninstall=1 ;;
\?) print_illegal $@ >&2;
echo "---"
sed -ne 's/^## \(.*\)/\1/p' $0
exit 1
;;
esac
done
# CLInt GENERATED_CODE: end
###################################################
# POPULATE ACCENT COLORS
###################################################
accents=( "default" )
while read line; do
if [ "$line" = "" ] || [[ "$line" =~ ^#.* ]]
then
continue
fi
IFS=' '
read -ra splitedline <<< "$line"
if [[ ${#splitedline[@]} > 2 ]] || [[ ${#splitedline[@]} < 2 ]]; then
echo "Error line $n: Malformed line '$line'"
else
accents+=( ${splitedline[0]} )
fi
done < "src/accents.txt"
###################################################
# FUNCTIONS
###################################################
function uninstall() {
for dir in \
/usr/share/libreoffice/share/config \
/usr/lib/libreoffice/share/config \
/usr/lib64/libreoffice/share/config \
/usr/local/lib/libreoffice/share/config \
/opt/libreoffice*/share/config; do
[ -d "$dir" ] || continue
for accent in "${accents[@]}"; do
if [[ $accent == "default" ]]; then
theme_name="yaru"
else
theme_name="yaru_${accent}"
fi
sudo rm -f -v "$dir/images_${theme_name}.zip"
sudo rm -f -v "$dir/images_${theme_name}_svg.zip"
done
done
}
function install() {
sudo mkdir -p -v "/usr/share/libreoffice/share/config"
for accent in "${accents[@]}"; do
if [[ $accent == "default" ]]; then
theme_name="yaru"
else
theme_name="yaru_${accent}"
fi
sudo cp -v "dist/images_${theme_name}.zip" "/usr/share/libreoffice/share/config/images_${theme_name}.zip"
sudo cp -v "dist/images_${theme_name}_svg.zip" "/usr/share/libreoffice/share/config/images_${theme_name}_svg.zip"
sudo chmod 644 "/usr/share/libreoffice/share/config/images_${theme_name}.zip"
sudo chmod 644 "/usr/share/libreoffice/share/config/images_${theme_name}_svg.zip"
for dir in \
/usr/lib64/libreoffice/share/config \
/usr/lib/libreoffice/share/config \
/usr/local/lib/libreoffice/share/config \
/opt/libreoffice*/share/config; do
[ -d "$dir" ] || continue
sudo ln -sf -v "/usr/share/libreoffice/share/config/images_${theme_name}.zip" "$dir"
sudo ln -sf -v "/usr/share/libreoffice/share/config/images_${theme_name}_svg.zip" "$dir"
done
done
}
###################################################
# MAIN
###################################################
if [[ $_uninstall = 1 ]];
then
echo -e "\n=> 🔥 Removing Libreoffice style Yaru\n"
uninstall
echo -e "\n=> 🎉 Finish\n"
else
./build.sh --zip
if [[ $? -ne 0 ]]; then
exit 1
fi
echo -e "\n=> 🔥 Removing old install\n"
uninstall
echo -e "\n=> 📥 Installing Libreoffice style Yaru\n"
install
echo -e "\n=> 🎉 Finish (don't forget to restart Libreoffice)!\n"
fi