A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 render-assets.sh

View raw Download
text/x-shellscript • 193 B
Bourne-Again shell script, ASCII text executable
        
            
1
#! /bin/bash
2
set -ueo pipefail
3
4
INDEX="assets.txt"
5
6
_parallel() {
7
which parallel && parallel $@ || (
8
while read i;
9
do
10
$1 $i
11
done
12
)
13
}
14
15
cat $INDEX | _parallel ./render-asset.sh
16
exit 0
17