We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8205ba commit a3ab032Copy full SHA for a3ab032
scripts/utils.sh
@@ -7,22 +7,26 @@ do_install() {
7
GTK320DIR="${INSTALL_DIR}/gtk-3.20"
8
9
install -dm755 "${INSTALL_DIR}"
10
+ cp index.theme "${INSTALL_DIR}"
11
12
for _DIR in "${GTKDIR}" "${GTK320DIR}"
13
do
14
GTKVER="${_DIR##*/}"
15
16
+ cd src
17
+
18
mkdir -p "${_DIR}"
19
- cp -rT "${INSTALL_DIR}" \
20
+ cp -rt "${INSTALL_DIR}" \
21
gtk-2.0 metacity-1 openbox-3 xfce-notify-4.0 xfwm4 unity
22
- cp -T "${_DIR}" \
23
+ cp -t "${_DIR}" \
24
"${GTKVER}/gtk.css" \
25
"${GTKVER}/gtk-dark.css" \
26
"${GTKVER}/gtk.gresource" \
- "${GTKVER}/thumbnail.png" \
- "${GTKVER}/index.theme"
27
+ "${GTKVER}/thumbnail.png"
28
29
+ cd -
30
done
31
}
32
0 commit comments