forked from lbdyck/prompters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtspin
executable file
·26 lines (26 loc) · 871 Bytes
/
tspin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
clear
# demonstrate the various options for gum spin
#
SPIN="line"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="dot"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="minidot"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="jump"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="pulse"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="points"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="globe"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="moon"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="monkey"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="meter"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3
SPIN="hamburger"
gum spin --title "test $SPIN:" --spinner="$SPIN" -- sleep 3