This repository has been archived by the owner on May 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Spicetify.ini
1921 lines (1717 loc) · 44.8 KB
/
Spicetify.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]
Update = 1000
ContextTitle = New theme
ContextAction = !CommandMeasure Script ThemeNew()
ContextTitle2 = Duplicate current theme
ContextAction2 = !CommandMeasure Script ThemeDuplicate()
[Metadata]
Name=Spicetify
Author=khanhas (khanhas#3928 @ discord, /u/khanhas @ reddit)
Information=Spice up Spotify client
Version=1.7.7
License=GNU General Public License v3.0
[Variables]
CurrentTheme =SpicetifyDefault
@include = #ROOTCONFIGPATH#Themes\#CurrentTheme#\color.inc
Replace_Colors =1
Inject_CSS =1
Radio =0
Home =0
LyricAlwaysShow =0
LyricForceNoSync =0
VisualizationHighFramerate =0
ExperimentalFeatures=1
FastUserSwitching=1
MadeForYouHub=0
SongPage=0
DisableSentry =1
DisableUILogging =1
RemoveRTLRule =1
LiveUpdate =0
;Shouldn't change those below
ActivatedExtensions=shuffle+.js;wnpplugin.js;trashbin.js;queueall.js;
ActivatedApps=reddit;
LastSpotifyVersion=
;If you experience crash when using Spicetify skin, please
;comment out or delete this [Websocket] measure.
[WebSocket]
Measure=Plugin
Plugin=MessagePassing
Name=Spicetify
[Script]
Measure = Script
ScriptFile = #@#Script.lua
[Backup]
Measure = Plugin
Plugin = RunCommand
Parameter = robocopy "%appdata%\Spotify\Apps" "#@#Backup"
OutputType = ANSI
FinishAction = !CommandMeasure Script "Init_Unzip()"
[Restore]
Measure = Plugin
Plugin = RunCommand
Parameter = RD "%appdata%\Spotify\Apps" /S /Q
OutputType = ANSI
FinishAction = [!CommandMeasure Restore2 Run]
[Restore2]
Measure = Plugin
Plugin = RunCommand
Parameter = robocopy "#@#Backup" "%appdata%\Spotify\Apps"
OutputType = ANSI
FinishAction = [!CommandMeasure Script "Restored()"]["#@#AutoRestart.exe"]
[ClearBackup]
Measure = Plugin
Plugin = RunCommand
Parameter = RD "#@#Backup" /S /Q
OutputType = ANSI
FinishAction = [!CommandMeasure ClearBackup2 "Run"]
[ClearBackup2]
Measure = Plugin
Plugin = RunCommand
Parameter = RD "#@#Extracted" /S /Q
OutputType = ANSI
FinishAction = [!WriteKeyValue Variables LastSpotifyVersion " "][!Refresh]
[Unzip]
Measure = Plugin
Plugin = RunCommand
StartInFolder = #@#
OutputType = ANSI
DynamicVariables = 1
FinishAction = !CommandMeasure Script "Unzip()"
[Duplicate]
Measure = Plugin
Plugin = RunCommand
OutputType = ANSI
StartInFolder = #@#Extracted
FinishAction = !CommandMeasure Script "Init_PrepareCSS()"
[Remove]
Measure = Plugin
Plugin = RunCommand
Parameter = del "%appdata%\Spotify\Apps" /S /Q
OutputType = ANSI
FinishAction = [!CommandMeasure TransferRawToSpotify "Run"][!CommandMeasure Script "UpdateStatus('Copying extracted files to Spotify')"]
[TransferRawToSpotify]
Measure = Plugin
Plugin = RunCommand
Parameter = robocopy "#@#Extracted\Raw" "%appdata%\Spotify\Apps" /S /COPY:D /R:50 /W:1 /NJH /NS /LOG:"#@#robocopy_transfer_raw_log.txt"
OutputType = ANSI
FinishAction = !CommandMeasure Script "Transfer()"
[TransferMod]
Measure = Plugin
Plugin = RunCommand
OutputType = ANSI
FinishAction = !CommandMeasure Script "Finishing()"
[CopyApp]
Measure = Plugin
Plugin = RunCommand
OutputType = ANSI
FinishAction = !CommandMeasure Script "App_CopyRountine()"
[ThemeFolderView]
Measure = Plugin
Plugin = FileView
Path = #ROOTCONFIGPATH#Themes
ShowDotDot = 0
ShowFolder = 1
ShowFile = 0
FinishAction = [!UpdateMeasure ThemeFolderCount][!UpdateMeasure ThemeFolderName][!CommandMeasure Script "UpdateTheme()"]
[ThemeFolderCount]
Measure = Plugin
Plugin = FileView
Path = [ThemeFolderView]
Type = FolderCount
[ThemeFolderName]
Measure = Plugin
Plugin = FileView
Path = [ThemeFolderView]
Type = FileName
Index = 1
IgnoreCount = 1
[BackupFileCount]
Measure = Plugin
Plugin = FileView
Path = #@#Backup
ShowDotDot = 0
ShowFolder = 0
FinishAction = [!UpdateMeasure BackupFileCount][!CommandMeasure Script "UpdateInitStatus()"]
Type = FileCount
[BackupFileName]
Measure = Plugin
Plugin = FileView
Path = [BackupFileCount]
Type = FileName
Index = 1
IgnoreCount = 1
[SpotifyFileCount]
Measure = Plugin
Plugin = FileView
Path = %appdata%\Spotify\Apps
ShowDotDot = 0
ShowFolder = 0
Type = FileCount
[CSSFileView]
Measure = Plugin
Plugin = FileView
Extensions = "css"
Recursive = 2
[CSSFileName]
Measure = Plugin
Plugin = FileView
Path = [CSSFileView]
Type = FilePath
Index = 1
IgnoreCount = 1
[Background]
Meter = Shape
Shape = Rectangle 10,10,1490,605,5 | StrokeWidth 0 | Fill Color f7f9f9
Shape2 = Rectangle 210, 40, 1, 530 | StrokeWidth 1 | Stroke Color 50505050
Shape3 = Rectangle 810, 40, 1, 530 | StrokeWidth 1 | Stroke Color 50505050
Shape4 = Rectangle 1160, 40, 1, 530 | StrokeWidth 1 | Stroke Color 50505050
[Theme]
Meter = String
Text = Theme:
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
X = 230
Y = 30
AntiAlias = 1
FontWeight = 600
[ThemeBack_Disabled]
Meter = String
Text = [\xf191]
FontFace = Font Awesome 5 Free
FontSize = 18
FontColor = 909090
AntiAlias = 1
X = 10R
Y = -5r
[ThemeBack]
Meter = String
MeterStyle = ThemeBack_Disabled
FontColor = 282828
X = r
Y = r
MouseOverAction = [!SetOption #CURRENTSECTION# FontColor 8a4fff][!UpdateMeter #CURRENTSECTION#][!Redraw]
MouseLeaveAction = [!SetOption #CURRENTSECTION# FontColor 282828][!UpdateMeter #CURRENTSECTION#][!Redraw]
LeftMouseUpAction = !CommandMeasure Script ThemeChange(-1)
Hidden = 1
[ThemeNext_Disabled]
Meter = String
Text = [\xf152]
FontFace = Font Awesome 5 Free
FontSize = 18
FontColor = 909090
AntiAlias = 1
X = 330
Y = r
[ThemeNext]
Meter = String
MeterStyle = ThemeNext_Disabled
FontColor = 282828
X = r
Y = r
MouseOverAction = [!SetOption #CURRENTSECTION# FontColor 8a4fff][!UpdateMeter #CURRENTSECTION#][!Redraw]
MouseLeaveAction = [!SetOption #CURRENTSECTION# FontColor 282828][!UpdateMeter #CURRENTSECTION#][!Redraw]
LeftMouseUpAction = !CommandMeasure Script ThemeChange(1)
Hidden = 1
[ThemeName]
Meter = String
Text = #CurrentTheme#
X = 370
Y = 30
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
AntiAlias = 1
ClipString = 1
W = 400
[ThemeRunCommand]
Measure = Plugin
Plugin = RunCommand
OutputType = ANSI
StartInFolder = #ROOTCONFIGPATH#Themes
[CoreSetting]
Meter = String
Text = Core setting:
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
X = 30
Y = 30
AntiAlias = 1
FontWeight = 600
[DevTool]
Meter = Shape
MeterStyle = ButtonStyle
X = 25
Y = 60
Shape = Rectangle 0, 0, 170, 40, 5 | StrokeWidth 1.25 | Extend StrokeColor,Color
StrokeColor = Stroke Color 8a4fff
Color = Fill Color 00000000
MouseOverAction = [!SetOption #CURRENTSECTION# Color "Fill Color 8a4fff"][!UpdateMeter #CURRENTSECTION#][!SetOption #CURRENTSECTION#Text FontColor f7f9f9][!UpdateMeter #CURRENTSECTION#Text][!ShowMeterGroup DevToolTip][!Redraw]
MouseLeaveAction = [!SetOption #CURRENTSECTION# Color "Fill Color 00000000"][!UpdateMeter #CURRENTSECTION#][!SetOption #CURRENTSECTION#Text FontColor 8a4fff][!UpdateMeter #CURRENTSECTION#Text][!HideMeterGroup DevToolTip][!Redraw]
[DevToolText]
Meter = String
MeterStyle = ButtonTextStyle
Text = [\xf0c8] Developer mode
H = 30
Y = 22r
X = 30
StringAlign = LeftCenter
FontSize = 13
InlinePattern = ^(.)
InlineSetting = Face | Font Awesome 5 Free
[ReplaceColorsMeasure]
Measure = Calc
IfCondition = #Replace_Colors# = 1
IfTrueAction = [!SetOption ReplaceColorsToggle Text "[\xf14a] Replace colors"]
IfFalseAction = [!SetOption ReplaceColorsToggle Text "[\xf0c8] Replace colors"]
DynamicVariables=1
[ReplaceColorsToggle]
Meter = String
Text =
InlinePattern = ^(.)
InlineSetting = Face | Font Awesome 5 Free
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
X = 30
Y = 10R
AntiAlias = 1
LeftMouseUpAction = [!WriteKeyValue Variables Replace_Colors "(1-#Replace_Colors#)"][!SetVariable Replace_Colors "(1-#Replace_Colors#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure ReplaceColorsMeasure][!UpdateMeter ReplaceColorsToggle][!Redraw]
Group = CoreSettings
[InjectCSSMeasure]
Measure = Calc
IfCondition = #Inject_CSS# = 1
IfTrueAction = !SetOption InjectCSSToggle Text "[\xf14a] Inject CSS"
IfFalseAction = !SetOption InjectCSSToggle Text "[\xf0c8] Inject CSS"
DynamicVariables=1
[InjectCSSToggle]
Meter = String
Text =
InlinePattern = ^(.)
InlineSetting = Face | Font Awesome 5 Free
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
ClipString = 2
ClipStringW= 170
X = r
Y = 10R
LeftMouseUpAction = [!WriteKeyValue Variables Inject_CSS "(1-#Inject_CSS#)"][!SetVariable Inject_CSS "(1-#Inject_CSS#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure InjectCSSMeasure][!UpdateMeter InjectCSSToggle][!Redraw]
AntiAlias = 1
Group = CoreSettings
[HomeMeasure]
Measure = Calc
IfCondition = #Home# = 1
IfTrueAction = !SetOption HomeToggle Text "[\xf14a] Enable Home"
IfFalseAction = !SetOption HomeToggle Text "[\xf0c8] Enable Home"
DynamicVariables=1
[HomeToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables Home "(1-#Home#)"][!SetVariable Home "(1-#Home#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure HomeMeasure][!UpdateMeter HomeToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup HomeTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup HomeTip][!Redraw]
[RadioMeasure]
Measure = Calc
IfCondition = #Radio# = 1
IfTrueAction = !SetOption RadioToggle Text "[\xf14a] Enable Radio"
IfFalseAction = !SetOption RadioToggle Text "[\xf0c8] Enable Radio"
DynamicVariables=1
[RadioToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables Radio "(1-#Radio#)"][!SetVariable Radio "(1-#Radio#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure RadioMeasure][!UpdateMeter RadioToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup RadioTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup RadioTip][!Redraw]
[LyricAlwaysShowMeasure]
Measure = Calc
IfCondition = #LyricAlwaysShow# = 1
IfTrueAction = !SetOption LyricAlwaysShowToggle Text "[\xf14a] Lyrics button always show"
IfFalseAction = !SetOption LyricAlwaysShowToggle Text "[\xf0c8] Lyrics button always show"
DynamicVariables=1
[LyricAlwaysShowToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables LyricAlwaysShow "(1-#LyricAlwaysShow#)"][!SetVariable LyricAlwaysShow "(1-#LyricAlwaysShow#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure LyricAlwaysShowMeasure][!UpdateMeter LyricAlwaysShowToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup LyricAlwaysShowTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup LyricAlwaysShowTip][!Redraw]
[LyricForceNoSyncMeasure]
Measure = Calc
IfCondition = #LyricForceNoSync# = 1
IfTrueAction = !SetOption LyricForceNoSyncToggle Text "[\xf14a] Force no sync lyrics"
IfFalseAction = !SetOption LyricForceNoSyncToggle Text "[\xf0c8] Force no sync lyrics"
DynamicVariables=1
[LyricForceNoSyncToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables LyricForceNoSync "(1-#LyricForceNoSync#)"][!SetVariable LyricForceNoSync "(1-#LyricForceNoSync#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure LyricForceNoSyncMeasure][!UpdateMeter LyricForceNoSyncToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup LyricForceNoSyncTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup LyricForceNoSyncTip][!Redraw]
[VisualizationHighFramerateMeasure]
Measure = Calc
IfCondition = #VisualizationHighFramerate# = 1
IfTrueAction = !SetOption VisualizationHighFramerateToggle Text "[\xf14a] High visualization framerate"
IfFalseAction = !SetOption VisualizationHighFramerateToggle Text "[\xf0c8] High visualization framerate"
DynamicVariables=1
[VisualizationHighFramerateToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables VisualizationHighFramerate "(1-#VisualizationHighFramerate#)"][!SetVariable VisualizationHighFramerate "(1-#VisualizationHighFramerate#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure VisualizationHighFramerateMeasure][!UpdateMeter VisualizationHighFramerateToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup VisualizationHighFramerateTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup VisualizationHighFramerateTip][!Redraw]
[ExperimentalFeaturesMeasure]
Measure = Calc
IfCondition = #ExperimentalFeatures# = 1
IfTrueAction = !SetOption ExperimentalFeaturesToggle Text "[\xf14a] Experimental features"
IfFalseAction = !SetOption ExperimentalFeaturesToggle Text "[\xf0c8] Experimental features"
DynamicVariables=1
[ExperimentalFeaturesToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables ExperimentalFeatures "(1-#ExperimentalFeatures#)"][!SetVariable ExperimentalFeatures "(1-#ExperimentalFeatures#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure ExperimentalFeaturesMeasure][!UpdateMeter ExperimentalFeaturesToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup ExperimentalFeaturesTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup ExperimentalFeaturesTip][!Redraw]
[FastUserSwitchingMeasure]
Measure = Calc
IfCondition = #FastUserSwitching# = 1
IfTrueAction = !SetOption FastUserSwitchingToggle Text "[\xf14a] Fast user switching"
IfFalseAction = !SetOption FastUserSwitchingToggle Text "[\xf0c8] Fast user switching"
DynamicVariables=1
[FastUserSwitchingToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables FastUserSwitching "(1-#FastUserSwitching#)"][!SetVariable FastUserSwitching "(1-#FastUserSwitching#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure FastUserSwitchingMeasure][!UpdateMeter FastUserSwitchingToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup FastUserSwitchingTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup FastUserSwitchingTip][!Redraw]
[MadeForYouHubMeasure]
Measure = Calc
IfCondition = #MadeForYouHub# = 1
IfTrueAction = !SetOption MadeForYouHubToggle Text "[\xf14a] Enable Made For You hub"
IfFalseAction = !SetOption MadeForYouHubToggle Text "[\xf0c8] Enable Made For You hub"
DynamicVariables=1
[MadeForYouHubToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables MadeForYouHub "(1-#MadeForYouHub#)"][!SetVariable MadeForYouHub "(1-#MadeForYouHub#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure MadeForYouHubMeasure][!UpdateMeter MadeForYouHubToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup MadeForYouHubTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup MadeForYouHubTip][!Redraw]
[SongPageMeasure]
Measure = Calc
IfCondition = #SongPage# = 1
IfTrueAction = !SetOption SongPageToggle Text "[\xf14a] Enable Song Page"
IfFalseAction = !SetOption SongPageToggle Text "[\xf0c8] Enable Song Page"
DynamicVariables=1
[SongPageToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables SongPage "(1-#SongPage#)"][!SetVariable SongPage "(1-#SongPage#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure SongPageMeasure][!UpdateMeter SongPageToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup SongPageTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup SongPageTip][!Redraw]
[Preprocess]
Meter = String
Text = Pre-process:
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
X = 30
Y = 120
AntiAlias = 1
FontWeight = 600
Group = Preprocess
Hidden = 1
[SentryMeasure]
Measure = Calc
IfCondition = #DisableSentry# = 1
IfTrueAction = !SetOption SentryToggle Text "[\xf14a] Disable Sentry"
IfFalseAction = !SetOption SentryToggle Text "[\xf0c8] Disable Sentry"
DynamicVariables=1
[SentryToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables DisableSentry "(1-#DisableSentry#)"][!SetVariable DisableSentry "(1-#DisableSentry#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure SentryMeasure][!UpdateMeter SentryToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup SentryTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup SentryTip][!Redraw]
Group = Preprocess
Hidden = 1
[UILoggingMeasure]
Measure = Calc
IfCondition = #DisableUILogging# = 1
IfTrueAction = !SetOption UILoggingToggle Text "[\xf14a] Disable UI logger"
IfFalseAction = !SetOption UILoggingToggle Text "[\xf0c8] Disable UI logger"
DynamicVariables=1
[UILoggingToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables DisableUILogging "(1-#DisableUILogging#)"][!SetVariable DisableUILogging "(1-#DisableUILogging#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure UILoggingMeasure][!UpdateMeter UILoggingToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup UILoggingTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup UILoggingTip][!Redraw]
Group = Preprocess
Hidden = 1
[RemoveRTLRuleMeasure]
Measure = Calc
IfCondition = #RemoveRTLRule# = 1
IfTrueAction = !SetOption RemoveRTLRuleToggle Text "[\xf14a] Remove RTL rules"
IfFalseAction = !SetOption RemoveRTLRuleToggle Text "[\xf0c8] Remove RTL rules"
DynamicVariables=1
[RemoveRTLRuleToggle]
Meter = String
MeterStyle = InjectCSSToggle
LeftMouseUpAction = [!WriteKeyValue Variables RemoveRTLRule "(1-#RemoveRTLRule#)"][!SetVariable RemoveRTLRule "(1-#RemoveRTLRule#)"][!CommandMeasure Script "ParseCoreSetting()"][!UpdateMeasure RemoveRTLRuleMeasure][!UpdateMeter RemoveRTLRuleToggle][!Redraw]
MouseOverAction = [!ShowMeterGroup RemoveRTLRuleTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup RemoveRTLRuleTip][!Redraw]
Group = Preprocess
Hidden = 1
[ButtonStyle]
Y = 520
Shape = Rectangle 0,0,135,40,20 | StrokeWidth 1.25 | Extend StrokeColor,Color
StrokeColor = Stroke Color 8a4fff
Color = Fill Color 00000000
MouseOverAction = [!SetOption #CURRENTSECTION# Color "Fill Color 8a4fff"][!UpdateMeter #CURRENTSECTION#][!SetOption #CURRENTSECTION#Text FontColor f7f9f9][!UpdateMeter #CURRENTSECTION#Text][!Redraw]
MouseLeaveAction = [!SetOption #CURRENTSECTION# Color "Fill Color 00000000"][!UpdateMeter #CURRENTSECTION#][!SetOption #CURRENTSECTION#Text FontColor 8a4fff][!UpdateMeter #CURRENTSECTION#Text][!Redraw]
[ButtonTextStyle]
FontFace = Bahnschrift
FontWeight = 600
FontSize = 14
StringAlign = CenterCenter
X = (135/2)r
Y = 22r
W = 135
H = 40
AntiAlias = 1
FontColor = 8a4fff
[LiveUpdateMeasure]
Measure = Calc
IfCondition = #LiveUpdate# = 1
IfTrueAction = !SetOption LiveUpdateToggle Text "[\xf14a] Live update"
IfFalseAction = !SetOption LiveUpdateToggle Text "[\xf0c8] Live update"
IfConditionMode = 1
DynamicVariables = 1
[LiveUpdateToggle]
Meter = String
MeterStyle = InjectCSSToggle
Y = 540
X = 520
LeftMouseUpAction = [!WriteKeyValue Variables LiveUpdate "(1-#LiveUpdate#)"][!SetVariable LiveUpdate "(1-#LiveUpdate#)"][!Update]
MouseOverAction = [!ShowMeterGroup LiveUpdateTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup LiveUpdateTip][!Redraw]
DynamicVariables = 1
[BackupButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 230
LeftMouseUpAction = !CommandMeasure Backup Run
Group = BackupButton
[BackupButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Backup
Group = BackupButton
[RestoreButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 230
Y = 470
LeftMouseUpAction = !CommandMeasure Restore Run
Group = Button_Disabled | Apply_Disabled
[RestoreButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Restore
Group = ButtonText_Disabled | ApplyText_Disabled
[ClearBackupButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 230
StrokeColor = Stroke Color FF3030
MouseOverAction = [!SetOption #CURRENTSECTION# Color "Fill Color FF3030 "][!UpdateMeter #CURRENTSECTION#][!SetOption #CURRENTSECTION#Text FontColor f7f9f9][!UpdateMeter #CURRENTSECTION#Text][!ShowMeterGroup PopupClearBackup][!Redraw]
MouseLeaveAction = [!SetOption #CURRENTSECTION# Color "Fill Color 00000000"][!UpdateMeter #CURRENTSECTION#][!SetOption #CURRENTSECTION#Text FontColor FF3030][!UpdateMeter #CURRENTSECTION#Text][!HideMeterGroup PopupClearBackup][!Redraw]
LeftMouseUpAction = !CommandMeasure "ClearBackup" "Run"
Group = ClearBackupGroup
[ClearBackupButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Clear backup
FontColor = FF3030
Group = ClearBackupGroup
[EditCSSButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 375
Y = 470
LeftMouseUpAction = ["#ROOTCONFIGPATH#Themes/#CurrentTheme#/user.css"]
Group =
[EditCSSButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Edit CSS
Group =
[UpdateCSSButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 375
LeftMouseUpAction = [!CommandMeasure Script "UpdateUserCSS()"]
Group = Button_Disabled | Apply_Disabled
[UpdateCSSButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Update CSS
Group = ButtonText_Disabled | ApplyText_Disabled
[ApplyButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 650
LeftMouseUpAction = !CommandMeasure Script "StartMod()"
Group = Button_Disabled
[ApplyButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Apply
Group = ButtonText_Disabled
[RestartButton]
Meter = Shape
MeterStyle = ButtonStyle
X = 650
Y= 470
LeftMouseUpAction = ["#@#AutoRestart.exe"]
[RestartButtonText]
Meter = String
MeterStyle = ButtonTextStyle
Text = Restart
MouseOverAction = [!ShowMeterGroup RestartTip][!Redraw]
MouseLeaveAction = [!HideMeterGroup RestartTip][!Redraw]
[ColorBoxStyle]
X = 25R
Y = r
Shape = Rectangle 0,0,120,35,8 | StrokeWidth 0 | Extend Color
Group = ColorBox
[TextStyle]
X = 25R
Y = r
W = 120
ClipstringW = 120
Clipstring = 2
StringAlign = LeftBottom
FontFace = Bahnschrift
FontSize = 13
FontWeight = 400
AntiAlias = 1
FontColor = 282828
Group = ColorBoxText
[ShadowStyle]
ImageName = #@#Shadow.png
X = 15R
Y = r
[Text1]
Meter = String
X = 230
Y = 80
MeterStyle = TextStyle
[Text2]
Meter = String
MeterStyle = TextStyle
[Text3]
Meter = String
MeterStyle = TextStyle
[Text4]
Meter = String
MeterStyle = TextStyle
[Shadow1]
Meter = Image
X = 225
Y = -8r
MeterStyle = ShadowStyle
[Shadow2]
Meter = Image
MeterStyle = ShadowStyle
[Shadow3]
Meter = Image
MeterStyle = ShadowStyle
[Shadow4]
Meter = Image
MeterStyle = ShadowStyle
[Box1]
Meter=Shape
X = 230
Y = 18r
MeterStyle = ColorBoxStyle
[Box2]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box3]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box4]
Meter=Shape
MeterStyle = ColorBoxStyle
[Text5]
Meter = String
X = 230
Y = 60R
MeterStyle = TextStyle
[Text6]
Meter = String
MeterStyle = TextStyle
[Text7]
Meter = String
MeterStyle = TextStyle
[Text8]
Meter = String
MeterStyle = TextStyle
[Shadow5]
Meter = Image
X = 225
Y = -8r
MeterStyle = ShadowStyle
[Shadow6]
Meter = Image
MeterStyle = ShadowStyle
[Shadow7]
Meter = Image
MeterStyle = ShadowStyle
[Shadow8]
Meter = Image
MeterStyle = ShadowStyle
[Box5]
Meter=Shape
X = 230
Y = 18r
MeterStyle = ColorBoxStyle
[Box6]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box7]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box8]
Meter=Shape
MeterStyle = ColorBoxStyle
[Text9]
Meter = String
X = 230
Y = 60R
MeterStyle = TextStyle
[Text10]
Meter = String
MeterStyle = TextStyle
[Text11]
Meter = String
MeterStyle = TextStyle
[Text12]
Meter = String
MeterStyle = TextStyle
[Shadow9]
Meter = Image
X = 225
Y = -8r
MeterStyle = ShadowStyle
[Shadow10]
Meter = Image
MeterStyle = ShadowStyle
[Shadow11]
Meter = Image
MeterStyle = ShadowStyle
[Shadow12]
Meter = Image
MeterStyle = ShadowStyle
[Box9]
Meter=Shape
X = 230
Y = 18r
MeterStyle = ColorBoxStyle
[Box10]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box11]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box12]
Meter=Shape
MeterStyle = ColorBoxStyle
[Text13]
Meter = String
X = 230
Y = 60R
MeterStyle = TextStyle
[Text14]
Meter = String
MeterStyle = TextStyle
[Text15]
Meter = String
MeterStyle = TextStyle
[Text16]
Meter = String
MeterStyle = TextStyle
[Shadow13]
Meter = Image
X = 225
Y = -8r
MeterStyle = ShadowStyle
[Shadow14]
Meter = Image
MeterStyle = ShadowStyle
[Shadow15]
Meter = Image
MeterStyle = ShadowStyle
[Shadow16]
Meter = Image
MeterStyle = ShadowStyle
[Box13]
Meter=Shape
X = 230
Y = 18r
MeterStyle = ColorBoxStyle
[Box14]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box15]
Meter=Shape
MeterStyle = ColorBoxStyle
[Box16]
Meter=Shape
MeterStyle = ColorBoxStyle
[PercentBar]
Meter=Shape
X = 10
Y = 10
Shape = Rectangle 0,0,1490,605,5
Shape2 = Rectangle 0,605,1490,-4 | StrokeWidth 0 | Fill Color 50505050
Shape3 = Combine Shape2 | Intersect Shape
Shape4 = Rectangle 0,605,(1490*[Script:GetPercent()]),-4 | StrokeWidth 0 | Fill Color 8a4fff
Shape5 = Combine Shape4 | Intersect Shape
DynamicVariables = 1
[Status]
Meter = String
MeasureName = Script
FontFace = Source Sans Pro
FontWeight = 300
FOntSize = 14
X = 30
Y = 608
StringAlign=LeftBottom
FontCOlor =505050
AntiAlias = 1
InlinePattern = ^.
InlineSetting = Face | Font Awesome 5 Free
InlinePattern2 = ([\w\-]+\.spa)
InlineSetting2 = Weight | 500
InlinePattern3 = Mod succeeded
InlineSetting3 = Weight | 500
InlinePattern4 = Transferring (.*) to (.*)
InlineSetting4 = Weight | 500
InlinePattern5 = ^(.+?) is updated at (.*)
InlineSetting5 = Weight | 500
;PLUGIN SECTION
[ExtensionFolderCount]
Measure = Plugin
Plugin = FileView
Path = #ROOTCONFIGPATH#Extensions
ShowFolder=0
Extensions="js"
Type = FileCount
ShowDotDot=0
FinishAction=!CommandMeasure Script "Extension_Init()"
[ExtensionFolderName]
Measure = Plugin
Plugin = FileView
Path = [ExtensionFolderCount]
Type = FileName
Index = 1
IgnoreCount = 1
[Extension]
Meter = String
Text = Extension:
FontFace = Bahnschrift
FOntSize = 13
FontColor = 282828
X = 840
Y = 30
AntiAlias = 1
FontWeight = 600
[ExtensionBackStyle]
X=840
Y=-20r
Shape=Rectangle 0,0,300,80,5 | StrokeWidth 2 | Fill Color E4E5E5 | Extend Active
Active = StrokeColor 200,200,200,100
Hidden=1
[ExtensionNameStyle]
Text=N/A
FontFace=Bahnschrift
FontWeight=500
FontSize=13
AntiAlias=1
X=845
Y=10r
ClipString=1
W=250
Hidden=1
[ExtensionAuthorStyle]
Text=N/A
FontFace=Bahnschrift
FontWeight=400
FontSize=12
AntiAlias=1
X=845