2021-04-09 20:03:06 +08:00
|
|
|
#! /bin/bash
|
|
|
|
|
2021-07-12 22:44:05 +08:00
|
|
|
INDEX="../../assets/gtk/common-assets/assets.txt"
|
|
|
|
SINDEX="../../assets/gtk/common-assets/sidebar-assets.txt"
|
|
|
|
WINDEX="../../assets/gtk/windows-assets/assets.txt"
|
2021-04-09 20:03:06 +08:00
|
|
|
|
|
|
|
if [ -f gtk.gresource.xml ]; then
|
|
|
|
rm -rf gtk.gresource.xml
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo '<?xml version="1.0" encoding="UTF-8"?>' >> gtk.gresource.xml
|
|
|
|
echo "<gresources>" >> gtk.gresource.xml
|
|
|
|
echo ' <gresource prefix="/org/gnome/theme">' >> gtk.gresource.xml
|
|
|
|
|
|
|
|
for i in `cat $INDEX`
|
|
|
|
do
|
|
|
|
echo " <file>assets/$i.png</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/$i@2.png</file>" >> gtk.gresource.xml
|
|
|
|
done
|
|
|
|
|
|
|
|
for i in `cat $SINDEX`
|
|
|
|
do
|
|
|
|
echo " <file>assets/$i.png</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/$i@2.png</file>" >> gtk.gresource.xml
|
|
|
|
done
|
|
|
|
|
|
|
|
for i in `cat $WINDEX`
|
|
|
|
do
|
|
|
|
echo " <file>windows-assets/$i.png</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>windows-assets/$i@2.png</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>windows-assets/$i-dark.png</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>windows-assets/$i-dark@2.png</file>" >> gtk.gresource.xml
|
|
|
|
done
|
|
|
|
|
2021-12-26 22:16:39 +08:00
|
|
|
echo " <file>assets/scalable/checkbox-checked-symbolic.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/checkbox-mixed-symbolic.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/radio-checked-symbolic.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/combobox-arrow-symbolic.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo ' <file alias="assets/scalable/radio-mixed-symbolic.svg">assets/scalable/checkbox-mixed-symbolic.svg</file>' >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/checkbox-checked-symbolic@2.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/checkbox-mixed-symbolic@2.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/radio-checked-symbolic@2.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>assets/scalable/combobox-arrow-symbolic@2.svg</file>" >> gtk.gresource.xml
|
|
|
|
echo ' <file alias="assets/scalable/radio-mixed-symbolic@2.svg">assets/scalable/checkbox-mixed-symbolic@2.svg</file>' >> gtk.gresource.xml
|
|
|
|
|
2021-04-09 20:03:06 +08:00
|
|
|
echo " <file>gtk.css</file>" >> gtk.gresource.xml
|
|
|
|
echo " <file>gtk-dark.css</file>" >> gtk.gresource.xml
|
|
|
|
|
|
|
|
echo " </gresource>" >> gtk.gresource.xml
|
|
|
|
echo "</gresources>" >> gtk.gresource.xml
|
|
|
|
|
|
|
|
exit 0
|