-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.js
117 lines (89 loc) · 2.06 KB
/
links.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
const gemini = {
url: "https://gemini.google.com",
display: "Gemini",
shortcut: "gg",
kind: "normal",
};
const jellyfin = {
url: "http://localhost:8096/web",
display: "Jellyfin",
shortcut: "j",
kind: "normal",
};
const githubRepoList = {
url: "https://github.com/rberenguel?tab=repositories",
display: "Repo list",
shortcut: "gr",
kind: "normal",
};
const githubWeave = {
url: "https://github.com/rberenguel/weave",
display: "Weave",
shortcut: "gw",
kind: "normal",
};
const github = {
display: "Github",
kind: "title",
};
const hr = {
kind: "sep",
};
const col = {
kind: "col",
};
const fontsize = {
display: "fontSize: 20px",
kind: "settings",
};
const vscode = {
kind: "title",
display: "VSCode",
};
const vscodeLinks = {
url: "vscode://file/Users/ruben/fromsource/nt/links.js",
display: "Edit links",
kind: "normal",
shortcut: ".l",
};
const vscodeTasks = {
url: "vscode://file//Users/ruben/Library/Mobile%20Documents/com~apple~CloudDocs/_nt/tasks.js",
display: "Edit tasks",
kind: "normal",
shortcut: ".t",
};
const usenixSRE = {
url: "https://www.usenix.org/publications/loginonline?field_lv2_article_type_tid=All&field_lv2_tags_tid=1102",
display: "usenix SRE",
kind: "normal",
shortcut: "u",
};
const links = [
fontsize,
jellyfin,
gemini,
usenixSRE,
github,
githubRepoList,
githubWeave,
hr,
vscode,
vscodeLinks,
vscodeTasks,
];
/*
Equivalent markdown file:
# Settings
- fontSize: 20px
## `j` [jellyfin](http://localhost:8096/web)
## `gg` [Gemini](https://gemini.google.com)
- [Gem manager](https://gemini.google.com/gems/view)
## `u` [usenix SRE](https://www.usenix.org/publications/loginonline?field_lv2_article_type_tid=All&field_lv2_tags_tid=1102)
# Github
## `gr` [Repo list](https://github.com/rberenguel?tab=repositories)
## `gw` [Weave](https://github.com/rberenguel/weave)
---
# VSCode
## `.l` [Edit links](vscode://file/Users/ruben/fromsource/nt/links.js)
## `.t` [Edit tasks](vscode://file//Users/ruben/Library/Mobile%20Documents/com~apple~CloudDocs/_nt/tasks.js)
*/