by roundabout, Friday, 25 November 2016, 14:11:36 (1480083096), pushed by roundabout, Sunday, 11 May 2025, 13:22:03 (1746969723)
Author identity: nana-4 <hnmaigo@gmail.com>
44c7c3a154fa1468204afea201c1872e8da9eeaa
install.sh
@@ -1,11 +1,167 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
repodir=$(cd $(dirname $0) && pwd)
srcdir=${repodir}/src
echo
echo Installing Flat-Plat && ./scripts/install-theme.sh
echo Installing Flat-Plat-compact && ./scripts/install-theme-compact.sh
# echo Installing Flat-Plat-dark && ./scripts/install-theme-dark.sh
# echo Installing Flat-Plat-dark-compact && ./scripts/install-theme-dark-compact.sh
echo Installing Flat-Plat-light && ./scripts/install-theme-light.sh
echo Installing Flat-Plat-light-compact && ./scripts/install-theme-light-compact.sh
# Not enabled color: '-dark'
for color in '' '-light' ; do
for size in '' '-compact' ; do
echo Installing Flat-Plat${color}${size} ...
themedir=${destdir}/usr/share/themes/Flat-Plat${color}${size}
install -d ${themedir}
# Copy COPYING
cd ${repodir}
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index${color}${size}.theme \
${themedir}/index.theme
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat${color} Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
if [ "$color" == '-dark' ] ; then
cp -ur \
assets${color} \
${themedir}/gnome-shell/assets
else
cp -ur \
assets \
${themedir}/gnome-shell
fi
cp -ur \
gnome-shell${color}${size}.css \
${themedir}/gnome-shell/gnome-shell.css
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
if [ "$color" == '-dark' ] ; then
cp -ur \
assets${color} \
${themedir}/gtk-2.0/assets
else
cp -ur \
assets \
${themedir}/gtk-2.0
fi
cp -ur \
gtkrc${color} \
${themedir}/gtk-2.0/gtkrc
# Install GTK+ 3 Theme
for version in '3.18' '3.20' '3.22' ; do
if [ "$version" == '3.18' ] ; then
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/${version}
cp -ur \
assets \
${themedir}/gtk-3.0
cp -ur \
gtk${color}.css \
${themedir}/gtk-3.0/gtk.css
if [ "$color" == '-dark' ] ; then
:
else
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0
fi
else
install -d ${themedir}/gtk-${version}
cd ${srcdir}/gtk-3.0/${version}
cp -ur \
assets \
${themedir}/gtk-${version}
cp -ur \
gtk${color}${size}.css \
${themedir}/gtk-${version}/gtk.css
if [ "$color" == '-dark' ] ; then
:
else
cp -ur \
gtk-dark${size}.css \
${themedir}/gtk-${version}/gtk-dark.css
fi
fi
done
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
if [ "$color" == '-light' ] ; then
cp -ur \
metacity-theme-2${color}.xml \
${themedir}/metacity-1/metacity-theme-2.xml
cp -ur \
metacity-theme-3${color}.xml \
${themedir}/metacity-1/metacity-theme-3.xml
else
cp -ur \
metacity-theme-2.xml \
metacity-theme-3.xml \
${themedir}/metacity-1
fi
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
if [ "$color" == '-light' ] ; then
cp -urT \
buttons${color} \
${themedir}/unity/buttons
else
cp -ur \
buttons \
${themedir}/unity
fi
done
done
echo
echo Done.
scripts/install-theme-compact.sh
@@ -1,140 +0,0 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
srcdir=$(cd $(dirname $0)/../src && pwd)
themedir=/usr/share/themes/Flat-Plat-compact
install -d ${themedir}
# Copy COPYING
cd $(cd $(dirname $0)/.. && pwd)
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index-compact.theme \
${themedir}/index.theme
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
cp -ur \
assets \
${themedir}/gnome-shell
cp -ur \
gnome-shell-compact.css \
${themedir}/gnome-shell/gnome-shell.css
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
cp -ur \
assets \
${themedir}/gtk-2.0
cp -ur \
gtkrc \
${themedir}/gtk-2.0
# Install GTK+ 3 Theme
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/3.18
cp -ur \
assets \
${themedir}/gtk-3.0
cp -ur \
gtk.css \
${themedir}/gtk-3.0
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0
install -d ${themedir}/gtk-3.20
cd ${srcdir}/gtk-3.0/3.20
cp -ur \
assets \
${themedir}/gtk-3.20
cp -ur \
gtk-compact.css \
${themedir}/gtk-3.20/gtk.css
cp -ur \
gtk-dark-compact.css \
${themedir}/gtk-3.20/gtk-dark.css
install -d ${themedir}/gtk-3.22
cd ${srcdir}/gtk-3.0/3.22
cp -ur \
assets \
${themedir}/gtk-3.22
cp -ur \
gtk-compact.css \
${themedir}/gtk-3.22/gtk.css
cp -ur \
gtk-dark-compact.css \
${themedir}/gtk-3.22/gtk-dark.css
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
cp -ur \
metacity-theme-2.xml \
${themedir}/metacity-1
cp -ur \
metacity-theme-3.xml \
${themedir}/metacity-1
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
cp -ur \
buttons \
${themedir}/unity
scripts/install-theme-dark-compact.sh
@@ -1,140 +0,0 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
srcdir=$(cd $(dirname $0)/../src && pwd)
themedir=/usr/share/themes/Flat-Plat-dark-compact
install -d ${themedir}
# Copy COPYING
cd $(cd $(dirname $0)/.. && pwd)
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index-dark-compact.theme \
${themedir}/index.theme
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat-dark Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
cp -ur \
assets-dark \
${themedir}/gnome-shell/assets
cp -ur \
gnome-shell-dark-compact.css \
${themedir}/gnome-shell/gnome-shell.css
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
cp -ur \
assets-dark \
${themedir}/gtk-2.0/assets
cp -ur \
gtkrc-dark \
${themedir}/gtk-2.0/gtkrc
# Install GTK+ 3 Theme
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/3.18
cp -ur \
assets \
${themedir}/gtk-3.0
#cp -ur \
# gtk.css \
# ${themedir}/gtk-3.0
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0/gtk.css
install -d ${themedir}/gtk-3.20
cd ${srcdir}/gtk-3.0/3.20
cp -ur \
assets \
${themedir}/gtk-3.20
#cp -ur \
# gtk-compact.css \
# ${themedir}/gtk-3.20/gtk.css
cp -ur \
gtk-dark-compact.css \
${themedir}/gtk-3.20/gtk.css
install -d ${themedir}/gtk-3.22
cd ${srcdir}/gtk-3.0/3.22
cp -ur \
assets \
${themedir}/gtk-3.22
#cp -ur \
# gtk-compact.css \
# ${themedir}/gtk-3.22/gtk.css
cp -ur \
gtk-dark-compact.css \
${themedir}/gtk-3.22/gtk.css
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
cp -ur \
metacity-theme-2.xml \
${themedir}/metacity-1
cp -ur \
metacity-theme-3.xml \
${themedir}/metacity-1
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
cp -ur \
buttons \
${themedir}/unity
scripts/install-theme-dark.sh
@@ -1,140 +0,0 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
srcdir=$(cd $(dirname $0)/../src && pwd)
themedir=/usr/share/themes/Flat-Plat-dark
install -d ${themedir}
# Copy COPYING
cd $(cd $(dirname $0)/.. && pwd)
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index-dark.theme \
${themedir}/index.theme
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat-dark Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
cp -ur \
assets-dark \
${themedir}/gnome-shell/assets
cp -ur \
gnome-shell-dark.css \
${themedir}/gnome-shell/gnome-shell.css
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
cp -ur \
assets-dark \
${themedir}/gtk-2.0/assets
cp -ur \
gtkrc-dark \
${themedir}/gtk-2.0/gtkrc
# Install GTK+ 3 Theme
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/3.18
cp -ur \
assets \
${themedir}/gtk-3.0
#cp -ur \
# gtk.css \
# ${themedir}/gtk-3.0
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0/gtk.css
install -d ${themedir}/gtk-3.20
cd ${srcdir}/gtk-3.0/3.20
cp -ur \
assets \
${themedir}/gtk-3.20
#cp -ur \
# gtk.css \
# ${themedir}/gtk-3.20
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.20/gtk.css
install -d ${themedir}/gtk-3.22
cd ${srcdir}/gtk-3.0/3.22
cp -ur \
assets \
${themedir}/gtk-3.22
#cp -ur \
# gtk.css \
# ${themedir}/gtk-3.22
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.22/gtk.css
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
cp -ur \
metacity-theme-2.xml \
${themedir}/metacity-1
cp -ur \
metacity-theme-3.xml \
${themedir}/metacity-1
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
cp -ur \
buttons \
${themedir}/unity
scripts/install-theme-light-compact.sh
@@ -1,140 +0,0 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
srcdir=$(cd $(dirname $0)/../src && pwd)
themedir=/usr/share/themes/Flat-Plat-light-compact
install -d ${themedir}
# Copy COPYING
cd $(cd $(dirname $0)/.. && pwd)
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index-light-compact.theme \
${themedir}/index.theme
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat-light Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
cp -ur \
assets \
${themedir}/gnome-shell
cp -ur \
gnome-shell-light-compact.css \
${themedir}/gnome-shell/gnome-shell.css
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
cp -ur \
assets \
${themedir}/gtk-2.0
cp -ur \
gtkrc-light \
${themedir}/gtk-2.0/gtkrc
# Install GTK+ 3 Theme
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/3.18
cp -ur \
assets \
${themedir}/gtk-3.0
cp -ur \
gtk-light.css \
${themedir}/gtk-3.0/gtk.css
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0
install -d ${themedir}/gtk-3.20
cd ${srcdir}/gtk-3.0/3.20
cp -ur \
assets \
${themedir}/gtk-3.20
cp -ur \
gtk-light-compact.css \
${themedir}/gtk-3.20/gtk.css
cp -ur \
gtk-dark-compact.css \
${themedir}/gtk-3.20/gtk-dark.css
install -d ${themedir}/gtk-3.22
cd ${srcdir}/gtk-3.0/3.22
cp -ur \
assets \
${themedir}/gtk-3.22
cp -ur \
gtk-light-compact.css \
${themedir}/gtk-3.22/gtk.css
cp -ur \
gtk-dark-compact.css \
${themedir}/gtk-3.22/gtk-dark.css
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
cp -ur \
metacity-theme-2-light.xml \
${themedir}/metacity-1/metacity-theme-2.xml
cp -ur \
metacity-theme-3-light.xml \
${themedir}/metacity-1/metacity-theme-3.xml
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
cp -urT \
buttons-light \
${themedir}/unity/buttons
scripts/install-theme-light.sh
@@ -1,140 +0,0 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
srcdir=$(cd $(dirname $0)/../src && pwd)
themedir=/usr/share/themes/Flat-Plat-light
install -d ${themedir}
# Copy COPYING
cd $(cd $(dirname $0)/.. && pwd)
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index-light.theme \
${themedir}/index.theme
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat-light Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
cp -ur \
assets \
${themedir}/gnome-shell
cp -ur \
gnome-shell-light.css \
${themedir}/gnome-shell/gnome-shell.css
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
cp -ur \
assets \
${themedir}/gtk-2.0
cp -ur \
gtkrc-light \
${themedir}/gtk-2.0/gtkrc
# Install GTK+ 3 Theme
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/3.18
cp -ur \
assets \
${themedir}/gtk-3.0
cp -ur \
gtk-light.css \
${themedir}/gtk-3.0/gtk.css
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0
install -d ${themedir}/gtk-3.20
cd ${srcdir}/gtk-3.0/3.20
cp -ur \
assets \
${themedir}/gtk-3.20
cp -ur \
gtk-light.css \
${themedir}/gtk-3.20/gtk.css
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.20
install -d ${themedir}/gtk-3.22
cd ${srcdir}/gtk-3.0/3.22
cp -ur \
assets \
${themedir}/gtk-3.22
cp -ur \
gtk-light.css \
${themedir}/gtk-3.22/gtk.css
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.22
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
cp -ur \
metacity-theme-2-light.xml \
${themedir}/metacity-1/metacity-theme-2.xml
cp -ur \
metacity-theme-3-light.xml \
${themedir}/metacity-1/metacity-theme-3.xml
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
cp -urT \
buttons-light \
${themedir}/unity/buttons
scripts/install-theme.sh
@@ -1,140 +0,0 @@
#!/bin/sh
gnomever=$(echo $(gnome-shell --version) | cut -d ' ' -f 3 | cut -d . -f -2)
srcdir=$(cd $(dirname $0)/../src && pwd)
themedir=/usr/share/themes/Flat-Plat
install -d ${themedir}
# Copy COPYING
cd $(cd $(dirname $0)/.. && pwd)
cp -ur \
COPYING \
${themedir}
# Install index.theme
cd ${srcdir}
cp -ur \
index.theme \
${themedir}
# Install Chrome Theme/Extention
install -d ${themedir}/chrome
cd ${srcdir}/chrome
cp -ur \
"Flat-Plat Scrollbars.crx" \
"Flat-Plat Theme.crx" \
${themedir}/chrome
# Install GNOME Shell Theme
install -d ${themedir}/gnome-shell
cd ${srcdir}/gnome-shell/${gnomever}
cp -ur \
extensions \
no-events.svg \
no-notifications.svg \
process-working.svg \
${themedir}/gnome-shell
cp -ur \
assets \
${themedir}/gnome-shell
cp -ur \
gnome-shell.css \
${themedir}/gnome-shell
glib-compile-resources \
--sourcedir=${themedir}/gnome-shell \
--target=${themedir}/gnome-shell/gnome-shell-theme.gresource \
gnome-shell-theme.gresource.xml
# Install GTK+ 2 Theme
install -d ${themedir}/gtk-2.0
cd ${srcdir}/gtk-2.0
cp -ur \
apps.rc \
main.rc \
${themedir}/gtk-2.0
cp -ur \
assets \
${themedir}/gtk-2.0
cp -ur \
gtkrc \
${themedir}/gtk-2.0
# Install GTK+ 3 Theme
install -d ${themedir}/gtk-3.0
cd ${srcdir}/gtk-3.0/3.18
cp -ur \
assets \
${themedir}/gtk-3.0
cp -ur \
gtk.css \
${themedir}/gtk-3.0
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.0
install -d ${themedir}/gtk-3.20
cd ${srcdir}/gtk-3.0/3.20
cp -ur \
assets \
${themedir}/gtk-3.20
cp -ur \
gtk.css \
${themedir}/gtk-3.20
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.20
install -d ${themedir}/gtk-3.22
cd ${srcdir}/gtk-3.0/3.22
cp -ur \
assets \
${themedir}/gtk-3.22
cp -ur \
gtk.css \
${themedir}/gtk-3.22
cp -ur \
gtk-dark.css \
${themedir}/gtk-3.22
install -d ${themedir}/gtk-common
cd ${srcdir}/gtk-3.0/gtk-common
cp -ur \
assets \
${themedir}/gtk-common
# Install Metacity Theme
install -d ${themedir}/metacity-1
cd ${srcdir}/metacity-1
cp -ur \
*.svg \
${themedir}/metacity-1
cp -ur \
metacity-theme-2.xml \
${themedir}/metacity-1
cp -ur \
metacity-theme-3.xml \
${themedir}/metacity-1
# Install Unity Theme
install -d ${themedir}/unity
cd ${srcdir}/unity
cp -ur \
*.svg \
*.png \
*.json \
${themedir}/unity
cp -ur \
buttons \
${themedir}/unity