grub2-themes/assets/render-all.sh
vinceliuice 30c1a9162b update
2021-01-25 23:54:41 +08:00

12 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