-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.js
93 lines (91 loc) · 2.13 KB
/
env.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
window.__defaultConfig = Object.freeze({
githubLink: `https://github.com/see-bz/journey`,
installLink: `https://github.com/see-bz/journey/releases/`,
widgets: {
clocks: {
timezones: [
{
slug: "ist",
timezone: "Asia/Kolkata",
name: "IST",
},
{
slug: "est",
timezone: "America/New_York",
name: "New York",
},
{
slug: "pst",
timezone: "America/Los_Angeles",
name: "California",
},
{
slug: "utc",
timezone: "UTC",
name: "UTC",
},
{
slug: "tokyo",
timezone: "Asia/Tokyo",
name: "Tokyo",
},
],
refresh: {
refreshTime: 1000,
refreshDate: 60 * 60 * 100,
},
},
greeting: {
greetings: {
MORNING: "Good morning",
AFTERNOON: "Good afternoon",
EVENING: "Good evening",
NIGHT: "Good night",
DAY: "Good day",
NOON: "Good noon",
},
},
bookmarks: {
urlToFetchFavicon: "http://www.google.com/s2/favicons?domain={domain}",
sections: [
{
title: "Bookmarks",
links: [
{
name: "Google",
url: "https://www.google.com",
},
{
name: "Youtube",
url: "https://www.youtube.com",
},
{
name: "Youtube Music",
url: "https://music.youtube.com",
},
{
name: "GitHub",
url: "https://www.github.com",
},
{
name: "LinkedIn",
url: "https://www.linkedin.com",
},
],
},
],
},
},
bgImg: {
url: "https://picsum.photos/1280/768",
},
});
window.__magicKeys = Object.freeze({
SEARCH: "/",
OPEN_CONFIG: "|",
});
window.__lsKeys = Object.freeze({
CONFIG: "journey_config",
NAME: "journey_uname",
BG_IMG: "journey_bgimg",
});