-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshako.config.ts
71 lines (69 loc) · 1.79 KB
/
shako.config.ts
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
import type { Config } from '@/types'
const config: Config = {
title: 'Shako - Keksio',
// Optional: Override Lanyard user data with custom values if you don't want to use Lanyard
// user: {
// name: "Keksi",
// avatar: "https://cdn.discordapp.com/avatars/527147599942385674/32a37325c4d3098a37e8f078707de99a.webp?size=256",
// },
discordID: '527147599942385674', // Discord user ID for Lanyard integration (can be omitted if 'user' is defined)
lanyardUrl: 'https://api.lanyard.rest/', // Custom Lanyard API URL (optional, for self-hosted instances) (WIP)
animatedBackground: false, // Whether to use the animated background (default: false)
iconButtons: [
{
icon: 'patreon',
url: 'https://patreon.com/keksi',
},
{
icon: 'buymeacoffee',
url: 'https://www.buymeacoffee.com/keksi',
},
{
icon: 'githubsponsors',
url: 'https://github.com/sponsors/keksiqc',
},
],
buttons: [
{
name: 'GitHub',
icon: 'github',
url: 'https://github.com/keksiqc',
},
{
name: 'Discord',
icon: 'discord',
url: 'https://discord.com/users/527147599942385674',
},
{
name: 'Twitter',
icon: 'x',
url: 'https://x.com/keksiqc',
},
{
name: 'Bluesky',
icon: 'bluesky',
url: 'https://bsky.app/profile/keksi.dev',
},
{
name: 'Steam',
icon: 'steam',
url: 'https://steamcommunity.com/id/keksiqc',
},
{
name: 'AniList',
icon: 'anilist',
url: 'https://anilist.co/user/keksiqc',
},
{
name: 'Trakt',
icon: 'trakt',
url: 'https://trakt.tv/users/keksiqc',
},
{
name: 'Hetzner Cloud',
icon: 'hetzner',
url: 'https://hetzner.cloud/?ref=iccx7cMZHWlx',
},
],
}
export default config