-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.config.js
78 lines (68 loc) · 2.19 KB
/
default.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
// all the variables can and should be changed to fit the user
config = {
// change this to the number of images in /images, otherwise random image generator will fail
numberOfImages: 10,
// how many links to show per row
iconsPerRow: 5,
// title in the top tab
title: "Zho Sun, Hinson",
// links to websites to be shown in tabs
links: {
gmail: "mail.google.com",
docs: "docs.google.com",
github: "https://github.com/",
drive: "drive.google.com",
youtube: "youtube.com",
wikipedia: "wikipedia.org",
},
// if you don't want quotes, just delete the entire quote section
quote: [
["Be the change you want to see in the world.", " — Mahatma Gandhi"],
[
"When you have a dream, you've got to grab it and never let go.",
" — Carol Burnett",
],
[
"Nothing is impossible. The word itself says 'I'm possible!'",
" — Audrey Hepburn",
],
[
"There is nothing impossible to they who will try. ",
" — Alexander the Great",
],
[
"The bad news is time flies. The good news is you're the pilot. ",
" — Michael Altshuler",
],
[
"Life has got all those twists and turns. You've got to hold on tight and off you go. ",
" — Nicole Kidman",
],
[
"Keep your face always toward the sunshine, and shadows will fall behind you. ",
" — Walt Whitman",
],
],
// list of search engines to be chosen from
customsearch: {
YouTube: "https://www.youtube.com/results",
Google: "https://www.google.com/search",
StackOverflow: "https://stackoverflow.com/search",
},
// icon override for when favicon picker fails to find a high res icon
// to add a custom icon, choose one of the names from your 'links' list,
// and add the path to the image in the list below, as shown.
customicons: {
docs: "./customicons/docs.png",
drive: "./customicons/drive.png",
youtube: "./customicons/youtube.png",
twitch: "./customicons/twitch.png",
studio: "./customicons/studio.png",
},
// decides if quote box is shown
showquote: false,
// decides if todo list is shown
showtodolist: true,
// decides todo box size
todoboxsize: "435px",
};