mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2026-03-12 23:14:01 +08:00
Combined 12 different rendering scripts into 1
This commit is contained in:
14
assets/render-all.sh
Executable file
14
assets/render-all.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
COLORS=("color" "white")
|
||||
TYPES=("icons" "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
|
||||
done
|
||||
done
|
||||
Reference in New Issue
Block a user