22 lines
2.1 KiB
Bash
22 lines
2.1 KiB
Bash
#!/usr/bin/env bash
|
|
set -u
|
|
ROOT=/d/ClaudeTools
|
|
GROK="$ROOT/.claude/skills/grok/scripts/ask-grok.sh"
|
|
OUT="$ROOT/projects/acg-website-showcase/multipage/assets/images/verdigris"
|
|
mkdir -p "$OUT"
|
|
cd "$ROOT"
|
|
|
|
echo "=== [1/4] hero: copper gate latch ==="
|
|
bash "$GROK" image "Photorealistic documentary close-up: a verdigris-patinated copper gate latch on a whitewashed stucco wall, soft cool morning side light, the latch in sharp focus and the plaster softly blurred behind it. Neutral-to-cool white balance, desaturated palette, the verdigris blue-green patina is the only saturated hue in frame, shallow depth of field, fine grain. No people, no text, no lens flare. Wide 3:2 landscape." "$OUT/hero.png"
|
|
|
|
echo "=== [2/4] services: patch panel labeling ==="
|
|
bash "$GROK" image "Photorealistic documentary photo: a pair of hands labeling a network patch panel with small neat handwritten tags, careful and human, cool neutral light, shallow depth of field, desaturated palette with a faint hint of verdigris green. Industrial, orderly, transparent process. No faces, no logos, no text on screen. Wide 3:2 landscape." "$OUT/services.png"
|
|
|
|
echo "=== [3/4] about: weathered enamel storefront sign ==="
|
|
bash "$GROK" image "Photorealistic documentary photo: a weathered hand-painted enamel storefront service sign mounted on a whitewashed Tucson stucco wall, cared-for but not glossy, the lettering soft and partly out of focus, partial sidewalk and plaster visible. Cool neutral white balance, side light, desaturated palette with verdigris-green and aged-metal accents. No people. Wide 3:2 landscape." "$OUT/about.png"
|
|
|
|
echo "=== [4/4] contact: cool Tucson storefront ==="
|
|
bash "$GROK" image "Photorealistic documentary photo: the exterior of a tidy 1950s single-story Tucson stucco storefront in cool overcast morning light, whitewashed plaster walls, a weathered copper-patina door pull and trim, clean simple windows. Calm, local, cared-for. Cool neutral white balance, desaturated palette, verdigris-green the only saturated hue. No signage text, no people. Wide 3:2 landscape." "$OUT/contact.png"
|
|
|
|
echo "=== DONE ==="; ls -la "$OUT"
|