You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/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
|