11 lines
284 B
Bash
Executable file
11 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
|
|
THEMES=("color" "white" "whitesur" "select")
|
|
RESOLUTIONS=("1080p" "2k" "4k")
|
|
|
|
for theme in "${THEMES[@]}"; do
|
|
for resolution in "${RESOLUTIONS[@]}"; do
|
|
echo "./render-assets.sh \"$theme\" \"$resolution\": "
|
|
./render-assets.sh "$theme" "$resolution"
|
|
done
|
|
done
|