2026-06-15 17:42:11 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>antergos-pkgs</title>
|
|
|
|
|
<style>
|
2026-06-23 09:56:30 +00:00
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
|
body {
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
|
|
|
background: #080810; color: #c0c0d0;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
.wrap { max-width: 960px; margin: 0 auto; padding: 32px 20px; }
|
|
|
|
|
|
|
|
|
|
.bar {
|
|
|
|
|
background: linear-gradient(135deg, #0d0d20 0%, #0a0a18 100%);
|
|
|
|
|
border: 1px solid #1a1a2e; border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 2em; font-weight: 300; letter-spacing: 0.04em;
|
|
|
|
|
padding: 32px 32px 8px; color: #e0e0f0;
|
|
|
|
|
}
|
|
|
|
|
h1 span { color: #4A9EFF; font-weight: 400; }
|
|
|
|
|
.sub {
|
|
|
|
|
padding: 0 32px 24px; color: #5a5a7a; font-size: 0.9em;
|
|
|
|
|
border-bottom: 1px solid #141428;
|
|
|
|
|
display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
.hal { color: #3a3a5a; font-style: italic; font-size: 0.85em; }
|
|
|
|
|
|
|
|
|
|
.setup {
|
|
|
|
|
margin: 24px 0; padding: 20px 24px; cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.setup summary {
|
|
|
|
|
color: #4A9EFF; font-size: 0.85em; font-weight: 500; cursor: pointer;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
.setup summary::-webkit-details-marker { color: #4A9EFF; }
|
|
|
|
|
.setup pre {
|
|
|
|
|
background: #060610; border: 1px solid #1a1a2e; border-radius: 8px;
|
|
|
|
|
padding: 16px; margin-top: 16px; overflow-x: auto;
|
|
|
|
|
font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace; font-size: 0.82em;
|
|
|
|
|
color: #9090b0; line-height: 1.6;
|
|
|
|
|
}
|
|
|
|
|
.setup .c { color: #3a3a5a; }
|
|
|
|
|
.setup .v { color: #6aaf6a; }
|
|
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
|
display: flex; gap: 12px; align-items: center; margin: 24px 0; flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
.controls input {
|
|
|
|
|
flex: 1; min-width: 200px;
|
|
|
|
|
background: #0c0c1e; border: 1px solid #1a1a2e; border-radius: 8px;
|
|
|
|
|
padding: 10px 14px; color: #c0c0d0; font-size: 0.9em;
|
|
|
|
|
outline: none; transition: border-color 0.2s;
|
|
|
|
|
}
|
|
|
|
|
.controls input:focus { border-color: #4A9EFF; }
|
|
|
|
|
.controls input::placeholder { color: #3a3a5a; }
|
|
|
|
|
.cnt { color: #4a4a6a; font-size: 0.85em; }
|
|
|
|
|
|
|
|
|
|
table { width: 100%; border-collapse: collapse; }
|
|
|
|
|
th {
|
|
|
|
|
text-align: left; padding: 10px 20px;
|
|
|
|
|
color: #3a3a5a; font-size: 0.72em; font-weight: 600;
|
|
|
|
|
text-transform: uppercase; letter-spacing: 0.12em;
|
|
|
|
|
border-bottom: 1px solid #141428;
|
|
|
|
|
}
|
|
|
|
|
td {
|
|
|
|
|
padding: 8px 20px; font-size: 0.88em;
|
|
|
|
|
border-bottom: 1px solid #0e0e1e; vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
tr:last-child td { border: none; }
|
|
|
|
|
tbody tr:hover td { background: #0a0a18; }
|
|
|
|
|
tbody tr:hover { border-radius: 8px; }
|
|
|
|
|
|
|
|
|
|
td a {
|
|
|
|
|
color: #4A9EFF; text-decoration: none; font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
td a:hover { color: #7aBEFF; text-decoration: underline; }
|
|
|
|
|
td.sz { color: #5a5a7a; text-align: right; font-variant-numeric: tabular-nums; }
|
|
|
|
|
|
|
|
|
|
.hidden { display: none !important; }
|
|
|
|
|
|
|
|
|
|
.ft {
|
|
|
|
|
text-align: center; padding: 32px 0 16px;
|
|
|
|
|
color: #2a2a4a; font-size: 0.78em;
|
|
|
|
|
}
|
|
|
|
|
.ft a { color: #3a3a6a; text-decoration: none; }
|
|
|
|
|
.ft a:hover { color: #4A9EFF; }
|
|
|
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
|
.wrap { padding: 16px 12px; }
|
|
|
|
|
h1 { padding: 24px 20px 4px; font-size: 1.5em; }
|
|
|
|
|
.sub { padding: 0 20px 16px; }
|
|
|
|
|
td, th { padding: 8px 12px; }
|
|
|
|
|
}
|
2026-06-15 17:42:11 +00:00
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-06-23 09:56:30 +00:00
|
|
|
<div class="wrap">
|
|
|
|
|
<div class="bar">
|
|
|
|
|
<h1>⟁ antergos<span>-pkgs</span></h1>
|
|
|
|
|
<div class="sub">
|
2026-06-23 11:43:19 +00:00
|
|
|
<span>11 packages · 13 MB</span>
|
2026-06-23 09:56:30 +00:00
|
|
|
<span class="hal">"I am putting myself to the fullest possible use."</span>
|
|
|
|
|
</div>
|
2026-06-15 17:42:11 +00:00
|
|
|
|
2026-06-23 09:56:30 +00:00
|
|
|
<details class="setup">
|
|
|
|
|
<summary>Setup — add this repository to pacman.conf</summary>
|
|
|
|
|
<pre><span class="c"># /etc/pacman.conf</span>
|
|
|
|
|
[antergos-pkgs]
|
2026-06-15 17:42:11 +00:00
|
|
|
SigLevel = Optional TrustAll
|
2026-06-23 09:57:29 +00:00
|
|
|
Server = https://antergos-next.github.io/antergos-packages/<span class="v">$repo</span>/os/<span class="v">$arch</span>
|
|
|
|
|
Server = https://antergos-next.github.io/antergos-packages</pre>
|
2026-06-23 09:56:30 +00:00
|
|
|
</details>
|
2026-06-15 17:42:11 +00:00
|
|
|
|
2026-06-23 09:56:30 +00:00
|
|
|
<div class="controls">
|
|
|
|
|
<input type="text" id="q" placeholder="Search packages..." oninput="f()" autofocus>
|
2026-06-23 11:43:19 +00:00
|
|
|
<span class="cnt" id="c">11 packages</span>
|
2026-06-23 09:56:30 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr><th>Package</th><th style="text-align:right">Size</th></tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody id="l">
|
2026-06-19 19:41:13 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><a href="antergos-next-desktop-settings-1-1-any.pkg.tar.zst">antergos-next-desktop-settings-1-1-any.pkg.tar.zst</a></td>
|
|
|
|
|
<td>0.0 MB</td>
|
|
|
|
|
</tr>
|
2026-06-15 17:42:11 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><a href="antergos-next-keyring-1-1-any.pkg.tar.zst">antergos-next-keyring-1-1-any.pkg.tar.zst</a></td>
|
|
|
|
|
<td>0.0 MB</td>
|
|
|
|
|
</tr>
|
2026-06-18 16:18:59 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><a href="antergos-next-memes-1.0-1-any.pkg.tar.zst">antergos-next-memes-1.0-1-any.pkg.tar.zst</a></td>
|
2026-06-20 18:45:22 +00:00
|
|
|
<td>2.9 MB</td>
|
2026-06-18 16:18:59 +00:00
|
|
|
</tr>
|
2026-06-15 17:42:11 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><a href="antergos-next-mirrorlist-1-1-any.pkg.tar.zst">antergos-next-mirrorlist-1-1-any.pkg.tar.zst</a></td>
|
|
|
|
|
<td>0.0 MB</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td><a href="antergos-wallpapers-0.7-4-any.pkg.tar.zst">antergos-wallpapers-0.7-4-any.pkg.tar.zst</a></td>
|
2026-06-15 18:44:42 +00:00
|
|
|
<td>0.2 MB</td>
|
2026-06-15 17:42:11 +00:00
|
|
|
</tr>
|
2026-06-22 20:18:42 +00:00
|
|
|
<tr>
|
2026-06-23 13:30:37 +00:00
|
|
|
<td><a href="antergos-welcome-0.1-3-any.pkg.tar.zst">antergos-welcome-0.1-3-any.pkg.tar.zst</a></td>
|
2026-06-22 20:18:42 +00:00
|
|
|
<td>0.1 MB</td>
|
|
|
|
|
</tr>
|
2026-06-18 16:47:14 +00:00
|
|
|
<tr>
|
2026-06-22 23:26:16 +00:00
|
|
|
<td><a href="calamares-3.4.2-3-x86_64.pkg.tar.zst">calamares-3.4.2-3-x86_64.pkg.tar.zst</a></td>
|
|
|
|
|
<td>4.9 MB</td>
|
2026-06-18 16:47:14 +00:00
|
|
|
</tr>
|
2026-06-19 19:41:13 +00:00
|
|
|
<tr>
|
2026-06-23 14:18:45 +00:00
|
|
|
<td><a href="calamares-branding-antergos-next-1.0-7-any.pkg.tar.zst">calamares-branding-antergos-next-1.0-7-any.pkg.tar.zst</a></td>
|
2026-06-19 19:41:13 +00:00
|
|
|
<td>0.0 MB</td>
|
|
|
|
|
</tr>
|
2026-06-15 17:42:11 +00:00
|
|
|
<tr>
|
|
|
|
|
<td><a href="downgrade-12.0.2-1-any.pkg.tar.zst">downgrade-12.0.2-1-any.pkg.tar.zst</a></td>
|
|
|
|
|
<td>0.0 MB</td>
|
|
|
|
|
</tr>
|
2026-06-23 09:47:41 +00:00
|
|
|
<tr>
|
2026-06-23 13:23:26 +00:00
|
|
|
<td><a href="hal-0.2.0-3-any.pkg.tar.zst">hal-0.2.0-3-any.pkg.tar.zst</a></td>
|
2026-06-23 09:47:41 +00:00
|
|
|
<td>0.0 MB</td>
|
|
|
|
|
</tr>
|
2026-06-15 17:42:11 +00:00
|
|
|
<tr>
|
2026-06-20 18:45:22 +00:00
|
|
|
<td><a href="yay-13.0.1-1-x86_64.pkg.tar.zst">yay-13.0.1-1-x86_64.pkg.tar.zst</a></td>
|
2026-06-18 14:28:27 +00:00
|
|
|
<td>4.5 MB</td>
|
2026-06-15 17:42:11 +00:00
|
|
|
</tr>
|
2026-06-23 09:56:30 +00:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
2026-06-15 17:42:11 +00:00
|
|
|
|
2026-06-23 09:56:30 +00:00
|
|
|
<div class="ft">
|
2026-06-23 09:57:29 +00:00
|
|
|
<a href="https://github.com/Antergos-NeXT/antergos-packages">GitHub</a> ·
|
|
|
|
|
<a href="https://antergos-next.github.io/antergos-packages/">antergos-next.github.io</a>
|
2026-06-23 09:56:30 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
function f() {
|
|
|
|
|
const q = document.getElementById('q').value.toLowerCase();
|
|
|
|
|
const r = document.querySelectorAll('#l tr');
|
|
|
|
|
let v = 0;
|
|
|
|
|
for (let i = 0; i < r.length; i++) {
|
|
|
|
|
if (r[i].textContent.toLowerCase().includes(q)) {
|
|
|
|
|
r[i].classList.remove('hidden'); v++;
|
|
|
|
|
} else {
|
|
|
|
|
r[i].classList.add('hidden');
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-06-23 11:43:19 +00:00
|
|
|
document.getElementById('c').textContent = v + ' / 11 packages';
|
2026-06-23 09:56:30 +00:00
|
|
|
}
|
|
|
|
|
</script>
|
2026-06-15 17:42:11 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|