-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenjoy-life.bash
More file actions
113 lines (109 loc) · 3.81 KB
/
Copy pathenjoy-life.bash
File metadata and controls
113 lines (109 loc) · 3.81 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# enjoy-life.bash — auto-generated by build.sh, do not edit directly
# Edit reasons.txt and run ./build.sh to regenerate
_enjoy_life() {
local reasons=(
"make your parents proud"
"conquer your fears"
"see your family again"
"see your favourite artist live"
"listen to music again"
"experience a new culture"
"make new friends"
"inspire someone"
"have your own children"
"adopt your own pet"
"make yourself proud"
"meet your idols"
"laugh until you cry"
"feel tears of happiness"
"eat your favorite food"
"see your siblings grow"
"pass school"
"get a tattoo"
"smile until your cheeks hurt"
"meet your internet friends"
"find someone who loves you like you deserve"
"eat ice cream on a hot day"
"drink hot chocolate on a cold day"
"see untouched snow in the morning"
"see a sunset that sets the sky on fire"
"see stars light up the sky"
"read a book that changes your life"
"see the flowers in the spring"
"see the leaves change from green to brown"
"travel abroad"
"learn a new language"
"learn to draw"
"tell others your story and help them"
"puppy kisses"
"baby kisses - the open mouthed kind on your cheek"
"swear words and the release you feel when you say them"
"trampolines"
"ice cream"
"stargazing"
"cloud watching"
"taking a shower and sleeping in clean sheets"
"receiving thoughtful gifts"
"hearing someone say: I saw this and thought of you"
"the feeling when someone you love says I love you"
"the relief you feel after crying"
"sunshine"
"the feeling of someone giving you their full attention"
"your future wedding"
"your favorite candy bar"
"new clothes"
"witty puns"
"really good bread"
"holding your child in your arms for the first time"
"completing a milestone — college, graduation, your dream job"
"dreams where you wake up and can't stop smiling"
"the smell before and after it rains"
"the sound of rain against a rooftop"
"the feeling you get when you're dancing"
"the people that mean the most to you"
"trying out new recipes"
"when your favorite song comes on"
"the rush you get when you step onto a stage"
"your voice and talents and knowledge are valuable to the world"
"breakfast in bed"
"getting the middle seat in the movie theater"
"breakfast for dinner"
"forgiveness"
"water balloon fights"
"new books by your favorite authors"
"fireflies"
"birthdays"
"realizing that someone loves you"
"spending the whole day with someone you love"
"the opportunity to build meaningful and lasting relationships"
"the potential to learn, grow, and evolve as a person"
"joy in the little things"
"the power to inspire others"
"the ability to create art, music, and self-expression"
"exploring different cultures, traditions, and ways of life"
"making a positive impact on the planet"
"the joys of raising a family"
"learning new skills"
"creating a legacy that will outlive you"
"being wrapped up in a warm bed"
"cuddles"
"holding hands"
"the kind of hug where your breath syncs with someone else's"
"singing off key with your best friends"
"road trips"
"spontaneous adventures"
"the feeling of sand beneath your toes"
"the first ocean wave that rolls over your feet"
"thunderstorms"
"the child-like feeling you get on Christmas morning"
"the day when everything finally goes your way"
"compliments and kind words from people who mean it"
"looking back on this moment in 10 years and knowing you made it"
)
local count=${#reasons[@]}
local idx=$(( RANDOM % count ))
local reason="${reasons[$idx]}"
reason="${reason^}"
echo -e "\\033[0;36m💙 ${reason}\\033[0m"
}
_enjoy_life