-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
173 lines (163 loc) Β· 6.26 KB
/
index.html
File metadata and controls
173 lines (163 loc) Β· 6.26 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KivotOS APT Repository</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/themes/catppuccin-latte.css" />
<link rel="stylesheet" href="styles/themes/catppuccin-mocha.css" />
<link rel="stylesheet" href="styles/base.css" />
<link rel="stylesheet" href="styles/components.css" />
<link rel="stylesheet" href="styles/page.css" />
<link rel="stylesheet" href="styles/aurora.css" />
</head>
<body>
<!-- Aurora Background Effect -->
<div class="aurora-bg" aria-hidden="true">
<div class="aurora-layer aurora-layer-1"></div>
<div class="aurora-layer aurora-layer-2"></div>
<div class="aurora-layer aurora-layer-3"></div>
<div class="aurora-grain"></div>
</div>
<div class="header">
<div class="container">
<h1>ποΈ KivotOS Repository</h1>
<p class="tagline">Custom APT packages for KivotOS distribution</p>
<button class="theme-toggle" id="themeToggle" title="Toggle theme">
<span class="theme-toggle-slider"></span>
</button>
</div>
</div>
<div class="main-content">
<!-- Top Row: Setup + Packages -->
<div class="dashboard-row primary">
<div class="dashboard-col-2">
<div class="card quick-setup">
<h2><span class="icon">β‘</span> Quick Setup</h2>
<p>Add KivotOS repository to your Debian/Ubuntu system:</p>
<h3>1. Import repo key</h3>
<div class="code-block">
<pre><code id="cmd1">curl -fsSL https://kivot-os.github.io/KivotOS-repo/pubkey.gpg \
| sudo gpg --dearmor -o /usr/share/keyrings/kivotos.gpg</code></pre>
<button class="copy-btn" onclick="copyCommand('cmd1', this)">
Copy
</button>
</div>
<h3>2. Add sources list (trixie/main)</h3>
<div class="code-block">
<pre><code id="cmd2">echo "deb [arch=amd64 signed-by=/usr/share/keyrings/kivotos.gpg] \
https://kivot-os.github.io/KivotOS-repo/ trixie main" \
| sudo tee /etc/apt/sources.list.d/kivotos.list</code></pre>
<button class="copy-btn" onclick="copyCommand('cmd2', this)">
Copy
</button>
</div>
<h3>3. Update & install</h3>
<div class="code-block">
<pre><code id="cmd3">sudo apt update
sudo apt install</code></pre>
<button class="copy-btn" onclick="copyCommand('cmd3', this)">
Copy
</button>
</div>
</div>
</div>
<div class="dashboard-col-1">
<div class="card package-card">
<h2><span class="icon">π¦</span> Available Packages</h2>
<div class="package-grid" id="package-grid">
<div class="loading-message">Loading available packages...</div>
</div>
<a href="apt.html" class="browse-btn">Browse APT Repository β</a>
</div>
</div>
</div>
<!-- Bottom Row: Status + Resources -->
<div class="dashboard-row">
<div class="dashboard-col-1">
<div class="card">
<h2><span class="icon">π</span> Repository Status</h2>
<div class="status-graph">
<img
src="https://raw.githubusercontent.com/Kivot-OS/KivotOS-status/refs/heads/master/graphs/kivot-os-apt-repository/response-time.png"
alt="KivotOS Repository Response Time Graph"
/>
</div>
<div class="status-details">
<p>
<strong>Overall uptime:</strong>
<span id="uptime-status">Loading...</span>
</p>
<p>
<strong>Average response time:</strong>
<span id="response-time-status">Loading...</span>
</p>
</div>
<div class="cta">
<a
href="https://kivot-os.github.io/KivotOS-status/"
style="color: var(--accent); text-decoration: none"
>View Full Status Page β</a
>
</div>
</div>
</div>
<div class="dashboard-col-1">
<div class="card">
<h2><span class="icon">π</span> Resources</h2>
<ul style="list-style: none; padding: 0">
<li style="margin: 0.75rem 0">
<a
href="https://github.com/Kivot-OS/KivotOS-repo"
style="color: var(--accent); text-decoration: none"
>
β GitHub Repository
</a>
</li>
<li style="margin: 0.75rem 0">
<a
href="./apt/"
style="color: var(--accent); text-decoration: none"
>
β Browse repository
</a>
</li>
<li style="margin: 0.75rem 0">
<a
href="./pubkey.gpg"
style="color: var(--accent); text-decoration: none"
>
β Download GPG Public Key
</a>
</li>
<li style="margin: 0.75rem 0">
<a
href="https://github.com/Kivot-OS/KivotOS-repo/actions?query=workflow%3A%22apt-packages%22"
style="color: var(--accent); text-decoration: none"
>
β Build:
<span id="build-status" style="font-weight: 500"
>Loading...</span
>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
KivotOS Repository Β· Powered by
<a href="https://pages.github.com">GitHub Pages</a>
</p>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>