-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStaticQuote.ini
2764 lines (2286 loc) · 43.7 KB
/
StaticQuote.ini
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Rainmeter]
Author=Aleš Trunda
Update=1000
[Variables]
Quotes=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
TextShadowColor=0,0,0,255
TextColor=255, 255, 255, 255
;for black text set TextColor=0, 0, 0
[ShowRandomQuote]
Measure=Script
ScriptFile=changeQuote.lua
UpdateDivider=86400 ;1 day
; == Quote1 ==
;It is said that the darkest hour of the night comes just before the dawn. -Thomas Fuller
[Quote1Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=40
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote1Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=40
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote1Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote1Style1
Text="It is said that the darkest hour of the night"
[Quote1Part2]
X=155
Y=75
Hidden=1
Meter=STRING
MeterStyle=Quote1Style2
Text="comes just before the dawn."
; == Quote2 ==
;Tick, tick, tick... that's the sound of your life running out. -Dexter TV series
[Quote2Style1]
FontFace=Quicksand
FontColor=#TextColor#
FontSize=46
FontWeight=400
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote2Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=36
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote2Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote2Style1
Text="Tick, tick, tick..."
[Quote2Part2]
X=155
Y=80
Hidden=1
Meter=STRING
MeterStyle=Quote2Style2
Text="that's the sound of your life running out."
; == Quote3 ==
;You know it's never too late to shoot for the stars regardless of who you are. -If Today Was Your Last Day, Nickelback
[Quote3Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=34
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote3Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=42
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote3Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote3Style1
Text="You know it's never too late to shoot for the stars"
[Quote3Part2]
X=160
Y=70
Hidden=1
Meter=STRING
MeterStyle=Quote3Style2
Text=regardless of who you are.
; == Quote4 ==
;I am a slow walker but I never walk back. -Abraham Lincoln
[Quote4Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=53
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote4Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=46
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote4Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote4Style1
Text="I am a slow walker"
[Quote4Part2]
X=3
Y=100
Hidden=1
Meter=STRING
MeterStyle=Quote4Style2
Text="but I never walk back."
; == Quote5 ==
;Success is not final, failure is not fatal, it is the courage to continue that counts. -Winston Churchill
[Quote5Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=38
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote5Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=36
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote5Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote5Style1
Text="Success is not final, failure is not fatal,"
[Quote5Part2]
X=0
Y=75
Hidden=1
Meter=STRING
MeterStyle=Quote5Style2
Text="it is the courage to continue that counts."
; == Quote6 ==
;It's the possibility of having a dream come true that makes life interesting. -Paulo Coelho
[Quote6Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=38
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote6Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=38
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote6Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote6Style1
Text="It's the possibility of having a dream"
[Quote6Part2]
X=0
Y=75
Hidden=1
Meter=STRING
MeterStyle=Quote6Style2
Text=come true that makes life interesting.
; == Quote7 ==
;Your time is limited, so don't waste it living someone else's life. -Steve Jobs
[Quote7Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=34
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote7Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=43
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote7Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote7Style1
Text="Your time is limited, so don't waste"
[Quote7Part2]
X=4
Y=60
Hidden=1
Meter=STRING
MeterStyle=Quote7Style2
Text="it living someone else's life."
; == Quote8 ==
;We spend money that we do not have, on things we do not need, to impress people who do not care. -Will Smith
[Quote8Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=32
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote8Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=43
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote8Style3]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=38
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote8Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote8Style1
Text="We spend money that we do not have,"
[Quote8Part2]
X=0
Y=57
Hidden=1
Meter=STRING
MeterStyle=Quote8Style2
Text="on things we do not need, to"
[Quote8Part3]
X=0
Y=132
Hidden=1
Meter=STRING
MeterStyle=Quote8Style3
Text="impress people who do not care."
; == Quote9 ==
;Keep your eyes on the stars and you feet on the ground. -Theodore Roosevelt
[Quote9Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=42
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote9Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=42
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote9Part1]
X=2
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote9Style1
Text="Keep your eyes on the stars"
[Quote9Part2]
X=0
Y=75
Hidden=1
Meter=STRING
MeterStyle=Quote9Style2
Text="and you feet on the ground."
; == Quote10 ==
;A year from now you may wish you had started today. -Karen Lamb
[Quote10Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=42
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote10Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=41
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote10Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote10Style1
Text="A year from now you may"
[Quote10Part2]
X=3
Y=85
Hidden=1
Meter=STRING
MeterStyle=Quote10Style2
Text="wish you had started today."
; == Quote11 ==
;If it is important to you, you will find a way. If not, you will find an excuse. -Ryan Blair
[Quote11Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=42
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote11Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=37
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote11Style3]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=41
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote11Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote11Style1
Text="If it is important to you,"
[Quote11Part2]
X=0
Y=82
Hidden=1
Meter=STRING
MeterStyle=Quote11Style2
Text="you will find a way. If not,"
[Quote11Part3]
X=1
Y=149
Hidden=1
Meter=STRING
MeterStyle=Quote11Style3
Text="you will find an excuse."
; == Quote12 ==
;You can keep going and your legs might hurt for a week, or you can quit and your mind will hurt for a lifetime. -Mark Allen
[Quote12Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=32
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote12Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=41
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote12Style3]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=35
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote12Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote12Style1
Text="You can keep going and your legs might"
[Quote12Part2]
X=0
Y=64
Hidden=1
Meter=STRING
MeterStyle=Quote12Style2
Text="hurt for a week, or you can quit"
[Quote12Part3]
X=5
Y=145
Hidden=1
Meter=STRING
MeterStyle=Quote12Style3
Text="and your mind will hurt for a lifetime."
; == Quote13 ==
;Choose a job you love and you will never have to work a day in your life. -Confucius
[Quote13Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=40
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote13Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=38
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote13Style3]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=36
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote13Part1]
X=2
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote13Style1
Text="Choose a job you love"
[Quote13Part2]
X=0
Y=70
Hidden=1
Meter=STRING
MeterStyle=Quote13Style2
Text="and you will never have"
[Quote13Part3]
X=2
Y=140
Hidden=1
Meter=STRING
MeterStyle=Quote13Style3
Text="to work a day in your life."
; == Quote14 ==
;The best revenge is massive success. -Frank Sinatra
[Quote14Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=48
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote14Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=59
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote14Part1]
X=2
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote14Style1
Text="The best revenge is"
[Quote14Part2]
X=0
Y=75
Hidden=1
Meter=STRING
MeterStyle=Quote14Style2
Text="massive success."
; == Quote15 ==
;Rise and rise again until lambs become lions. -Robin Hood movie
[Quote15Style1]
FontFace=Argos George
FontColor=#TextColor#
FontSize=54
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote15Style2]
FontFace=Argos George
FontColor=#TextColor#
FontSize=43
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote15Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote15Style1
Text="Rise and rise again"
[Quote15Part2]
X=2
Y=80
Hidden=1
Meter=STRING
MeterStyle=Quote15Style2
Text="until lambs become lions."
; == Quote16 ==
;Smile, it's easier than explaining why you're sad. -Frank Ocean
[Quote16Style1]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=60
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote16Style2]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=30
FontWeight=100
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote16Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote16Style1
Text="Smile,"
[Quote16Part2]
X=100
Y=105
Hidden=1
Meter=STRING
MeterStyle=Quote16Style2
Text="it's easier than explaining why you're sad."
; == Quote17 ==
;Don't hide your scars. They make you who you are. -Frank Sinatra
[Quote17Style1]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=46
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote17Style2]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=35
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote17Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote17Style1
Text="Don't hide your scars."
[Quote17Part2]
X=4
Y=90
Hidden=1
Meter=STRING
MeterStyle=Quote17Style2
Text="They make you who you are."
; == Quote18 ==
;Summer bodies are made in the winter. -Anonymous
[Quote18Style1]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=48
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote18Style2]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=48
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote18Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote18Style1
Text="Summer bodies are"
[Quote18Part2]
X=4
Y=85
Hidden=1
Meter=STRING
MeterStyle=Quote18Style2
Text="made in the winter."
; == Quote19 ==
;Make it happen now, not tomorrow. Tomorrow is a loser's excuse. -Farrah Gray
[Quote19Style1]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=30
FontWeight=200
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote19Style2]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=37
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote19Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote19Style1
Text="Make it happen now, not tomorrow."
[Quote19Part2]
X=0
Y=65
Hidden=1
Meter=STRING
MeterStyle=Quote19Style2
Text="Tomorrow is a loser's excuse."
; == Quote20 ==
;Either you run the day or the day runs you. -Jim Rohn
[Quote20Style1]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=38
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote20Style2]
FontFace=Montserrat
FontColor=#TextColor#
FontSize=43
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote20Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote20Style1
Text="Either you run the day"
[Quote20Part2]
X=2
Y=70
Hidden=1
Meter=STRING
MeterStyle=Quote20Style2
Text="or the day runs you."
; == Quote21 ==
;The greatest pleasure in life is doing what people say you cannot do. -Walter Bagehot
[Quote21Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=40
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote21Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=39
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote21Style3]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=50
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote21Part1]
X=2
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote21Style1
Text="The greatest pleasure in"
[Quote21Part2]
X=1
Y=70
Hidden=1
Meter=STRING
MeterStyle=Quote21Style2
Text="life is doing what people"
[Quote21Part3]
X=0
Y=129
Hidden=1
Meter=STRING
MeterStyle=Quote21Style3
Text="say you cannot do."
; == Quote22 ==
;Work hard in silence, let your success be your noise. -Frank Ocean
[Quote22Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=45
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote22Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=40
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote22Part1]
X=0
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote22Style1
Text="Work hard in silence, let"
[Quote22Part2]
X=0
Y=75
Hidden=1
Meter=STRING
MeterStyle=Quote22Style2
Text="your success be your noise."
; == Quote23 ==
;Chase the vision, not the money. The money will end up following you. -Tony Hsieh
[Quote23Style1]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=37
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote23Style2]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=40
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote23Style3]
FontFace=Poiret One
FontColor=#TextColor#
FontSize=42
FontWeight=300
AntiAlias=1
StringEffect=SHADOW
FontEffectColor=#TextShadowColor#
[Quote23Part1]
X=1
Y=0
Hidden=1
Meter=STRING
MeterStyle=Quote23Style1
Text="Chase the vision, not the"
[Quote23Part2]
X=0