-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault-services.example.js
More file actions
45 lines (44 loc) · 1.12 KB
/
default-services.example.js
File metadata and controls
45 lines (44 loc) · 1.12 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
// default-services.example.js
let sorted = true;
const defaultServices = [
{
name: "TV",
url: "http://192.168.178.123:8096",
description: "My Movies and TV-Shows. The good stuff.",
},
{
name: "Homebridge",
url: "http://192.168.178.123:8581",
description: "My HomeKit bridge for the things Apple forgot to support.",
},
{
name: "Portainer",
url: "http://192.168.178.123:9000",
description: "My Docker container management.",
},
{
name: "Notes",
url: "obsidian://open?vault=Notes",
description: "My Personal knowledge base and daily notes.",
},
{
name: "Static Startpage",
url: "https://github.com/sidisinsane/static-startpage",
description: "This very page. Very meta.",
},
{
name: "GitHub",
url: "https://github.com/sidisinsane",
description: "Where my code lives and pull requests go to age gracefully.",
},
{
name: "Twitter / X",
url: "https://x.com/sidisinsane",
description: "My profile. Not much happening here.",
},
{
name: "NAS",
url: "http://192.168.178.123:8080",
description: "My QNAP Network Storage.",
},
];