forked from migueravila/Bento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configLs.js
202 lines (192 loc) Β· 4.02 KB
/
configLs.js
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
// ββ ββββββββ¦ββββ
// β β©βββ£ βββ β β β
// βββββββββ β© βββ
// βββββββββββββ¬ββββ¬ β¬β¬βββββββ¬ββ¬ββββββ
// β β ββββββ€ ββ β¬β βββ¬ββββ€ β ββ ββββ
// ββββββββββ β΄βββββββ΄βββ΄ β΄ β΄ β΄ββββββ
const CONFIG = {
// ββ βββββββ¬ββββββ
// ββ΄ββββ€βββββ βββ
// ββββ΄ β΄ββββ΄ββββββ
// General
name: 'Saulo',
imageBackground: false,
openInNewTab: true,
twelveHourFormat: false,
// Layout
bentoLayout: 'lists', // 'bento', 'lists', 'buttons'
// Autochange
autoChangeTheme: false,
// Autochange by OS
changeThemeByOS: false,
// Autochange by hour options (24hrs format, string must be in: hh:mm)
changeThemeByHour: false,
hourDarkThemeActive: '18:00',
hourDarkThemeInactive: '07:00',
// β¬ β¬βββββ¬ββββ
// β ββββ β βββ
// β΄βββ΄βββ β΄ βββ
// First Links Container
firstlistsContainer: [
{
icon: 'hard-drive',
id: '1',
links: [
{
name: 'Disk',
link: 'https://disk.yandex.com/',
},
{
name: 'Mega',
link: 'https://mega.nz/',
},
{
name: 'Skiff',
link: 'https://app.skiff.org/drive/dashboard',
},
/*
{
name: 'One Drv',
link: 'https://onedrive.live.com/',
},*/
{
name: 'Filen',
link: 'https://drive.filen.io/',
},
{
name: 'D Drive',
link: 'https://doodrive.com/dashboard',
},
{
name: 'G Drive',
link: 'https://drive.google.com/',
},
{
name: 'Intrnxt',
link: 'https://drive.internxt.com/app',
},
{
name: 'Media Fr',
link: 'https://app.mediafire.com/',
},
],
},
{
icon: 'dices',
id: '2',
links: [
{
name: 'Dojon',
link: 'https://donjon.bin.sh/',
},
{
name: 'DevintArt',
link: 'https://www.deviantart.com/',
},
{
name: 'ArtStation',
link: 'https://www.artstation.com/',
},
{
name: 'My Noise ',
link: 'https://mynoise.net/',
},
{
name: 'Amb Mixer',
link: 'https://www.ambient-mixer.com/',
},
{
name: 'TTop Audio',
link: 'https://tabletopaudio.com/',
},
{
name: 'Password Gen',
link: 'https://passwordsgenerator.net/',
},
{
name: 'StandardNotes',
link: 'https://app.standardnotes.com/',
},
],
},
],
// Second Links Container
secondListsContainer: [
{
icon: 'terminal',
id: '1',
links: [
{
name: 'Cheat.sh',
link: 'https://cheat.sh/',
},
{
name: 'CSS-Tricks',
link: 'https://css-tricks.com/',
},
{
name: 'Curated Lists',
link: 'https://github.com/cuuupid/awesome-lists',
},
{
name: 'Stack Abuse',
link: 'https://stackabuse.com/',
},
{
name: 'Rosetta Code',
link: 'https://rosettacode.org/',
},
{
name: 'Tailwind Comp',
link: 'https://tailwindcomponents.com/',
},
{
name: 'Dictionary ADS',
link: 'https://xlinux.nist.gov/dads/',
},
{
name: 'Bootstrap Docs',
link: 'https://getbootstrap.com/docs/',
},
],
},
{
icon: 'code-2',
id: '2',
links: [
{
name: 'Rust',
link: 'https://www.rust-lang.org/learn',
},
{
name: 'PHP',
link: 'https://www.php.net/manual/en/',
},
{
name: 'B Crowd',
link: 'https://www.beecrowd.com.br/judge/pt/login',
},
{
name: 'Sololearn',
link: 'https://www.sololearn.com',
},
{
name: 'Neetcode',
link: 'https://neetcode.io/',
},
{
name: 'Coursera',
link: 'https://www.coursera.org',
},
{
name: 'CodeCamp',
link: 'https://www.freecodecamp.org',
},
{
name: 'W3 Schools',
link: 'https://www.w3schools.com/',
},
],
},
],
};