mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-11-05 16:16:14 +01:00
12 lines
284 B
Bash
Executable File
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
|