forked from migueravila/bento
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
130 lines (118 loc) · 2.91 KB
/
config.js
File metadata and controls
130 lines (118 loc) · 2.91 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
// ╔╗ ╔═╗╔╗╔╔╦╗╔═╗
// ╠╩╗║╣ ║║║ ║ ║ ║
// ╚═╝╚═╝╝╚╝ ╩ ╚═╝
// ┌─┐┌─┐┌┐┌┌─┐┬┌─┐┬ ┬┬─┐┌─┐┌┬┐┬┌─┐┌┐┌
// │ │ ││││├┤ ││ ┬│ │├┬┘├─┤ │ ││ ││││
// └─┘└─┘┘└┘└ ┴└─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘
const CONFIG = {
// ┌┐ ┌─┐┌─┐┬┌─┐┌─┐
// ├┴┐├─┤└─┐││ └─┐
// └─┘┴ ┴└─┘┴└─┘└─┘
// General
name: 'Alex',
imageBackground: false,
openInNewTab: true,
twelveHourFormat: true,
// Greetings
greetingMorning: 'Good morning!',
greetingAfternoon: 'Good afternoon,',
greetingEvening: 'Good evening,',
greetingNight: 'Go to Sleep!',
// Layout
bentoLayout: 'buttons', // 'bento', 'lists', 'buttons'
// Weather
//weatherKey: 'InsertYourAPIKeyHere123456', // Write here your API Key
//weatherIcons: 'OneDark', // 'Onedark', 'Nord', 'Dark', 'White'
//weatherUnit: 'C', // 'F', 'C'
//language: 'en', // 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: '37.775',
//defaultLongitude: '-122.419',
// Autochange
autoChangeTheme: true,
// Autochange by OS
changeThemeByOS: true,
// Autochange by hour options (24hrs format, string must be in: hh:mm)
changeThemeByHour: false,
hourDarkThemeActive: '18:30',
hourDarkThemeInactive: '07:00',
// ┌┐ ┬ ┬┌┬┐┌┬┐┌─┐┌┐┌┌─┐
// ├┴┐│ │ │ │ │ ││││└─┐
// └─┘└─┘ ┴ ┴ └─┘┘└┘└─┘
firstButtonsContainer: [
{
id: '1',
name: 'Beeper',
icon: 'server',
link: 'https://beeper.local:444/ui/sessions/signin/',
},
{
id: '2',
name: 'Mail',
icon: 'mail',
link: 'https://mail.google.com/',
},
{
id: '3',
name: 'Dagger',
icon: 'dagger',
link: 'http://dagger/admin/',
},
{
id: '4',
name: 'Homer',
icon: 'donut',
link: 'https://home.submers.io',
},
{
id: '5',
name: 'Reddit',
icon: 'glasses',
link: 'https://reddit.com',
},
{
id: '6',
name: 'Youtube',
icon: 'youtube',
link: 'https://youtube.com/',
},
],
secondButtonsContainer: [
{
id: '1',
name: 'Music',
icon: 'headphones',
link: 'https://open.spotify.com',
},
{
id: '2',
name: 'twitter',
icon: 'twitter',
link: 'https://twitter.com/',
},
{
id: '3',
name: 'bot',
icon: 'bot',
link: 'https://discord.com/app',
},
{
id: '4',
name: 'Amazon',
icon: 'shopping-bag',
link: 'https://amazon.com/',
},
{
id: '5',
name: 'Hashnode',
icon: 'pen-tool',
link: 'https://hashnode.com/',
},
{
id: '6',
name: 'Figma',
icon: 'figma',
link: 'https://figma.com/',
},
],
};