This repository has been archived by the owner on Dec 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
65 lines (63 loc) · 2.2 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
const gap = 20;
const colWidth = 200;
const hotkeyLeader = ':';
const mappings = {
suggestionNext: 'ctrl+j, alt+j, ArrowDown',
suggestionPrev: 'ctrl+k, alt+k, ArrowUp',
};
const categories = [
{
name: 'About_Project',
links: [
{ name: 'Repo', url: 'https://github.com/idefant/vanilla-startpage', hotkey: 'gh' },
{ name: 'My_Github_Profile', url: 'https://github.com/idefant' },
{ name: 'My_Website', url: 'https://idefant.ru' },
],
},
{
name: 'Social',
links: [
{ name: 'Telegram', url: 'web.telegram.org/', hotkey: 'tg' },
{ name: 'Youtube', url: 'https://youtube.com/', hotkey: 'yt' },
{ name: 'Gmail', url: 'https://mail.google.com/', hotkey: 'gm' },
{ name: 'LinkedIn', url: 'linkedin.com', hotkey: 'li' },
{ name: 'WhatsApp', url: 'https://web.whatsapp.com/', hotkey: 'wa' },
],
},
{
name: 'Code',
links: [
{ name: 'BundlePhobia', url: 'https://bundlephobia.com/', hotkey: 'bp' },
{ name: 'CanInlude', url: 'https://caninclude.glitch.me/', hotkey: 'ci' },
{ name: 'CanIUse', url: 'https://caniuse.com/', hotkey: 'cu' },
{ name: 'NPM', url: 'https://www.npmjs.com/', hotkey: 'npm' },
{ name: 'Tailwind', url: 'https://tailwindcss.com/', hotkey: 'tw' },
{ name: 'Codewars', url: 'https://www.codewars.com', hotkey: 'cw' },
{ name: 'Colab', url: 'https://colab.research.google.com/' },
],
},
{
name: 'Tools',
links: [
{ name: 'Excalidraw', url: 'https://excalidraw.com', hotkey: 'ew' },
{ name: 'Pendulums', url: 'https://app.pendulums.io/dashboard', hotkey: 'pd' },
{ name: 'SnapDrop', url: 'https://snapdrop.net/', hotkey: 'sd' },
{ name: 'ShareDrop', url: 'https://www.sharedrop.io/' },
{ name: 'GDrive', url: 'https://drive.google.com/' },
],
},
{
name: 'Selfhosted',
links: [
{ name: 'Nextcloud', url: 'https://nextcloud.com/', hotkey: 'nc' },
{ name: 'AdGuard', url: 'https://adguard.com/en/adguard-home/overview.html' },
{ name: 'Traefik', url: 'https://traefik.io/' },
],
},
{
name: 'Music',
links: [
{ name: 'Music_For_Programming', url: 'https://musicforprogramming.net/', hotkey: 'mp' },
],
},
];