forked from migueravila/Bento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
145 lines (131 loc) Β· 3.24 KB
/
config.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
// ββ ββββββββ¦ββββ
// β β©βββ£ βββ β β β
// βββββββββ β© βββ
// βββββββββββββ¬ββββ¬ β¬β¬βββββββ¬ββ¬ββββββ
// β β ββββββ€ ββ β¬β βββ¬ββββ€ β ββ ββββ
// ββββββββββ β΄βββββββ΄βββ΄ β΄ β΄ β΄ββββββ
const CONFIG = {
// ββ βββββββ¬ββββββ
// ββ΄ββββ€βββββ βββ
// ββββ΄ β΄ββββ΄ββββββ
// General
name: 'Saulo',
imageBackground: false,
openInNewTab: true,
twelveHourFormat: false,
// Greetings
greetingMorning: 'γγ―γγγγγγΎγοΌ!',
greetingAfternoon: 'γγγ«γ‘γ―,',
greetingEvening: 'γγγ°γγ―,',
greetingNight: 'ε―γ!',
// Layout
bentoLayout: 'bento', // 'bento', 'lists', 'buttons'
// Weather
weatherKey: '2956d6845d0ee105e784b6001f68c344', // Write here your API Key
weatherIcons: 'OneDark', // 'Onedark', 'Nord', 'Dark', 'White'
weatherUnit: 'C', // 'F', 'C'
language: 'pt_br', // More languages in https://openweathermap.org/current#multi
trackLocation: true, // If false or an error occurs, the app will use the lat/lon below
defaultLatitude: '-17.887520',
defaultLongitude: '-51.726028',
// 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',
// ββ β¬ β¬ββ¬βββ¬ββββββββββ
// ββ΄ββ β β β β βββββββ
// ββββββ β΄ β΄ βββββββββ
firstButtonsContainer: [
{
id: '1',
name: 'G Mail',
name: 'G Mail',
icon: 'mail',
link: 'https://mail.google.com/',
},
{
id: '2',
name: 'LinkedIn',
icon: 'linkedin',
link: 'https://www.linkedin.com',
},
{
id: '3',
name: 'P Mail',
icon: 'mail',
link: 'https://mail.protonmail.com',
},
{
id: '4',
name: 'WhtsApp',
icon: 'phone',
link: 'https://web.whatsapp.com',
},
{
id: '5',
name: 'Logs',
icon: 'asterisk',
link: 'https://clipperz.is/app/',
},
{
id: '6',
name: 'More Links',
icon: 'plus',
link: './lists.html',
},
],
// β¬ β¬βββββ¬ββββ
// β ββββ β βββ
// β΄βββ΄βββ β΄ βββ
// First Links Container
firstlistsContainer: [
{
icon: 'code',
id: '1',
links: [
{
name: 'Github',
link: 'https://github.com/ApplBoy',
},
{
name: 'Replit',
link: 'https://replit.com/~',
},
{
name: 'Gentoo',
link: 'https://wiki.gentoo.org/wiki/',
},
{
name: 'SIGAA',
link: 'https://sigaa.sistemas.ufj.edu.br/sigaa/verTelaLogin.do',
},
],
},
{
icon: 'gamepad',
id: '2',
links: [
{
name: 'MobyGames',
link: 'https://www.mobygames.com/',
},
{
name: 'Itch.io',
link: 'https://itch.io/',
},
{
name: '4chan',
link: 'https://www.4chan.org',
},
{
name: 'Music',
link: 'https://hyperpipe.surge.sh/',
},
],
},
],
};