This commit is contained in:
davedatum
2019-11-04 23:10:47 +00:00
parent 7e63616ad1
commit 23a7402a75
43 changed files with 10886 additions and 1 deletions

19
extractgst.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
gst=/usr/share/gnome-shell/gnome-shell-theme.gresource
workdir=${HOME}/Github/Manjaro/manjaro-gnome-theme/gnome-shell
if [ -d $workdir ]; then
rm -R $workdir
fi
for r in `gresource list $gst`; do
r=${r#\/org\/gnome\/shell/}
if [ ! -d $workdir/${r%/*} ]; then
mkdir -p $workdir/${r%/*}
fi
done
for r in `gresource list $gst`; do
gresource extract $gst $r >$workdir/${r#\/org\/gnome\/shell/}
done