| #!/bin/bash |
| |
| gum style --border normal --margin "1" --padding "1 2" --border-foreground 212 "Hello, there! Welcome to $(gum style --foreground 212 'Gum')." |
| NAME=$(gum input --placeholder "What is your name?") |
| |
| echo -e "Well, it is nice to meet you, $(gum style --foreground 212 "$NAME")." |
| |
| sleep 1; clear |
| |
| echo -e "Can you tell me a $(gum style --italic --foreground 99 'secret')?\n" |
| |
| gum write --placeholder "I'll keep it to myself, I promise!" > /dev/null # we keep the secret to ourselves |
| |
| clear; echo "What should I do with this information?"; sleep 1 |
| |
| READ="Read"; THINK="Think"; DISCARD="Discard" |
| ACTIONS=$(gum choose --no-limit "$READ" "$THINK" "$DISCARD") |
| |
| clear; echo "One moment, please." |
| |
| grep -q "$READ" <<< "$ACTIONS" && gum spin -s line --title "Reading the secret..." -- sleep 1 |
| grep -q "$THINK" <<< "$ACTIONS" && gum spin -s pulse --title "Thinking about your secret..." -- sleep 1 |
| grep -q "$DISCARD" <<< "$ACTIONS" && gum spin -s monkey --title " Discarding your secret..." -- sleep 2 |
| |
| sleep 1; clear |
| |
| GUM=$(echo -e "Cherry\nGrape\nLime\nOrange" | gum filter --placeholder "Favorite flavor?") |
| echo "I'll keep that in mind!" |
| |
| sleep 1; clear |
| |
| echo "Do you like $(gum style --foreground "#04B575" "Bubble Gum?")" |
| sleep 1 |
| |
| CHOICE=$(gum choose --item.foreground 250 "Yes" "No" "It's complicated") |
| |
| [[ "$CHOICE" == "Yes" ]] && echo "I thought so, $(gum style --bold "Bubble Gum") is the best." || echo "I'm sorry to hear that." |
| |
| sleep 1 |
| |
| gum spin --title "Chewing some $(gum style --foreground "#04B575" "$GUM") bubble gum..." -- sleep 2.5 |
| |
| clear |
| |
| NICE_MEETING_YOU=$(gum style --height 5 --width 20 --padding '1 3' --border double --border-foreground 57 "Nice meeting you, $(gum style --foreground 212 "$NAME"). See you soon!") |
| CHEW_BUBBLE_GUM=$(gum style --width 17 --padding '1 3' --border double --border-foreground 212 "Go chew some $(gum style --foreground "#04B575" "$GUM") bubble gum.") |
| gum join --horizontal "$NICE_MEETING_YOU" "$CHEW_BUBBLE_GUM" |