This commit is contained in:
vinceliuice
2021-01-25 23:54:41 +08:00
parent 5871779b04
commit 30c1a9162b
227 changed files with 2329 additions and 1089 deletions
+5 -8
View File
@@ -1,14 +1,11 @@
#!/bin/bash
COLORS=("color" "white")
TYPES=("icons" "select")
THEMES=("color" "white" "whitesur" "select")
RESOLUTIONS=("1080p" "2k" "4k")
for COLOR in "${COLORS[@]}"; do
for TYPE in "${TYPES[@]}"; do
for RESOLUTION in "${RESOLUTIONS[@]}"; do
echo "./render-assets.sh \"$COLOR\" \"$TYPE\" \"$RESOLUTION\": "
./render-assets.sh "$COLOR" "$TYPE" "$RESOLUTION"
done
for theme in "${THEMES[@]}"; do
for resolution in "${RESOLUTIONS[@]}"; do
echo "./render-assets.sh \"$theme\" \"$resolution\": "
./render-assets.sh "$theme" "$resolution"
done
done