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 • 289 B
Bourne-Again shell script, ASCII text executable
        
            
1
#!/bin/bash
2
set -ueo pipefail
3
4
# Make sure that parallel is GNU parallel and not moreutils.
5
# Otherwise, it fails silently. There's no smooth way to detect this.
6
if command -v parallel >/dev/null; then
7
cmd=(parallel)
8
else
9
cmd=(xargs -n1)
10
fi
11
12
"${cmd[@]}" ./render-asset.sh < assets.txt
13