From a4f01b53540f4367155c5e46e4dea99129669676 Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Wed, 20 Jul 2022 16:09:38 -0400 Subject: [PATCH] docs(examples): fix demos --- examples/demo.sh | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/examples/demo.sh b/examples/demo.sh index a7f572a..008beef 100755 --- a/examples/demo.sh +++ b/examples/demo.sh @@ -1,7 +1,5 @@ #!/bin/bash -go install github.com/charmbracelet/gum - echo "Hello, there! Welcome to $(gum style --foreground 212 'Gum')." NAME=$(gum input --placeholder "What is your name?") @@ -14,13 +12,15 @@ echo "Wait a moment, while I think of my favorite color..." gum spin --title "Thinking..." -- sleep 3 -echo "I like $(gum style --padding "0 1" --background $COLOR $COLOR), too. In fact, it's my $(gum style --padding "0 1" --background $COLOR 'favorite color!')" +echo "I like $(gum style --padding "0 1" --background "$COLOR" "$COLOR"), too. In fact, it's my $(gum style --padding "0 1" --background $COLOR 'favorite color!')" sleep 1 echo "Seems like we have a lot in common, $(gum style --foreground 212 "$NAME")." -sleep 1 +sleep 3 + +clear echo "What's your favorite Gum flavor?" @@ -29,10 +29,26 @@ Grape Lime Orange" | gum filter) -echo "One sec, while I finish my drink." +sleep 1 + +clear + +echo "Do you like $(gum style --foreground "#04B575" "Bubble Gum?")" + +CHOICE=$(gum choose "Yes" "No" "It's complicated") + +if [ "$CHOICE" == "Yes" ]; then + echo "I thought so, $(gum style --foreground "#04B575" "Bubble Gum") is the best." +else + echo "I'm sorry to hear that." +fi + +sleep 1 gum spin --title "Chewing some $GUM bubble gum..." -- sleep 5 -gum style --width 50 --padding "1 5" --margin "1 2" --border double --border-foreground 212 \ +clear + +gum style --width 50 --padding "1 5" --margin "0 2 1 2" --border double --border-foreground 212 \ "Well, it was nice meeting you, $(gum style --foreground 212 "$NAME"). Hope to see you soon!"\ "Don't forget to chew some $(gum style --foreground 212 $GUM) bubble gum."