808 lines
21 KiB
HTML
808 lines
21 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Modules Reference — M-Archy Dotfiles</title>
|
|
<style>
|
|
/* ── CyberQueer Theme ──────────────────────────────────────────────── */
|
|
:root {
|
|
--bg: #1A1A1A;
|
|
--bg2: #242424;
|
|
--bg3: #2e2e2e;
|
|
--text: #D6ABAB;
|
|
--accent: #E40046;
|
|
--violet: #5018DD;
|
|
--danger: #F50505;
|
|
--border: #5018DD;
|
|
--radius: 10px;
|
|
--radius-sm: 5px;
|
|
}
|
|
|
|
/* ── Reset & Base ──────────────────────────────────────────────────── */
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
font-family: 'Agave Nerd Font Mono', 'JetBrains Mono', 'Fira Code',
|
|
'Cascadia Code', 'Source Code Pro', monospace;
|
|
font-size: 15px;
|
|
line-height: 1.75;
|
|
max-width: 960px;
|
|
margin: 0 auto;
|
|
padding: 2.5rem 2rem 5rem;
|
|
}
|
|
|
|
/* ── Typography ────────────────────────────────────────────────────── */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Agave Nerd Font Mono', monospace;
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
margin-top: 2.2rem;
|
|
margin-bottom: 0.6rem;
|
|
}
|
|
|
|
h1 {
|
|
color: var(--accent);
|
|
font-size: 2.2rem;
|
|
border-bottom: 3px solid var(--accent);
|
|
padding-bottom: 0.4rem;
|
|
margin-top: 0;
|
|
}
|
|
|
|
h2 {
|
|
color: var(--accent);
|
|
font-size: 1.55rem;
|
|
border-bottom: 2px solid var(--violet);
|
|
padding-bottom: 0.3rem;
|
|
}
|
|
|
|
h3 {
|
|
color: var(--violet);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
h4, h5, h6 {
|
|
color: var(--text);
|
|
font-size: 1rem;
|
|
}
|
|
|
|
p {
|
|
margin: 0.9rem 0;
|
|
}
|
|
|
|
strong { color: var(--accent); font-weight: 700; }
|
|
em { color: var(--violet); font-style: italic; }
|
|
|
|
/* ── Links ─────────────────────────────────────────────────────────── */
|
|
a {
|
|
color: var(--violet);
|
|
text-decoration: none;
|
|
border-bottom: 1px solid transparent;
|
|
transition: color 0.15s, border-color 0.15s;
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--accent);
|
|
border-bottom-color: var(--accent);
|
|
}
|
|
|
|
/* ── Code ──────────────────────────────────────────────────────────── */
|
|
code {
|
|
font-family: inherit;
|
|
background: var(--bg2);
|
|
color: var(--violet);
|
|
border: 1px solid var(--violet);
|
|
border-radius: var(--radius-sm);
|
|
padding: 0.1em 0.42em;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
pre {
|
|
background: var(--bg2);
|
|
border: 2px solid var(--violet);
|
|
border-radius: var(--radius);
|
|
padding: 1.2rem 1.4rem;
|
|
overflow-x: auto;
|
|
margin: 1.2rem 0;
|
|
position: relative;
|
|
}
|
|
|
|
pre code {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 0;
|
|
color: var(--text);
|
|
font-size: 0.875em;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Syntax-like token colouring (no JS required — structural only) */
|
|
pre code .kw { color: var(--accent); }
|
|
pre code .str { color: var(--violet); }
|
|
pre code .cm { color: #666; font-style: italic; }
|
|
|
|
/* ── Horizontal Rule ───────────────────────────────────────────────── */
|
|
hr {
|
|
border: none;
|
|
border-top: 2px solid var(--violet);
|
|
margin: 2rem 0;
|
|
opacity: 0.45;
|
|
}
|
|
|
|
/* ── Blockquote ────────────────────────────────────────────────────── */
|
|
blockquote {
|
|
border-left: 4px solid var(--accent);
|
|
background: var(--bg2);
|
|
margin: 1.2rem 0;
|
|
padding: 0.8rem 1.2rem;
|
|
border-radius: 0 var(--radius) var(--radius) 0;
|
|
color: var(--text);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
blockquote p { margin: 0; }
|
|
|
|
/* ── Tables ────────────────────────────────────────────────────────── */
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 2px solid var(--border);
|
|
border-radius: var(--radius);
|
|
overflow: hidden;
|
|
margin: 1.2rem 0;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
th {
|
|
background: var(--violet);
|
|
color: var(--bg);
|
|
text-align: left;
|
|
padding: 0.55rem 0.9rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
td {
|
|
padding: 0.5rem 0.9rem;
|
|
border-top: 1px solid var(--bg3);
|
|
vertical-align: top;
|
|
}
|
|
|
|
tr:nth-child(even) td { background: var(--bg2); }
|
|
tr:hover td { background: var(--bg3); }
|
|
|
|
/* ── Lists ─────────────────────────────────────────────────────────── */
|
|
ul, ol {
|
|
padding-left: 1.6rem;
|
|
margin: 0.7rem 0;
|
|
}
|
|
|
|
li { margin: 0.25rem 0; }
|
|
|
|
ul li::marker { color: var(--accent); }
|
|
ol li::marker { color: var(--violet); font-weight: 700; }
|
|
|
|
/* ── Nav sidebar (index page) ──────────────────────────────────────── */
|
|
nav ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
nav li { margin: 0.3rem 0; }
|
|
|
|
/* ── Page Header Bar ───────────────────────────────────────────────── */
|
|
.page-header {
|
|
border-bottom: 3px solid var(--accent);
|
|
padding-bottom: 0.6rem;
|
|
margin-bottom: 2rem;
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.page-header .site-title {
|
|
color: var(--accent);
|
|
font-size: 0.85rem;
|
|
opacity: 0.75;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* ── Back link ─────────────────────────────────────────────────────── */
|
|
.back-link {
|
|
display: inline-block;
|
|
color: var(--violet);
|
|
font-size: 0.85rem;
|
|
margin-bottom: 1.5rem;
|
|
padding: 0.25rem 0.75rem;
|
|
border: 1px solid var(--violet);
|
|
border-radius: 30px;
|
|
transition: background 0.15s, color 0.15s;
|
|
}
|
|
|
|
.back-link:hover {
|
|
background: var(--violet);
|
|
color: var(--bg);
|
|
border-bottom-color: transparent;
|
|
}
|
|
|
|
/* ── Footer ────────────────────────────────────────────────────────── */
|
|
footer {
|
|
margin-top: 4rem;
|
|
padding-top: 1rem;
|
|
border-top: 1px solid var(--bg3);
|
|
color: var(--text);
|
|
opacity: 0.4;
|
|
font-size: 0.8rem;
|
|
text-align: center;
|
|
}
|
|
|
|
/* ── Responsive ────────────────────────────────────────────────────── */
|
|
@media (max-width: 680px) {
|
|
body { padding: 1.2rem 1rem 3rem; font-size: 14px; }
|
|
h1 { font-size: 1.7rem; }
|
|
h2 { font-size: 1.3rem; }
|
|
table { display: block; overflow-x: auto; }
|
|
}
|
|
|
|
/* ── Selection ─────────────────────────────────────────────────────── */
|
|
::selection {
|
|
background: var(--accent);
|
|
color: var(--bg);
|
|
}
|
|
|
|
/* ── Scrollbar ─────────────────────────────────────────────────────── */
|
|
::-webkit-scrollbar { width: 8px; height: 8px; }
|
|
::-webkit-scrollbar-track { background: var(--bg2); }
|
|
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 4px; }
|
|
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="page-header">
|
|
<span class="site-title">M-Archy Dotfiles</span>
|
|
</header>
|
|
<a class="back-link" href="index.html">← Index</a>
|
|
<main>
|
|
<h1 id="modules-reference">Modules Reference<a class="toc-anchor" href="#modules-reference" title="Permanent link">¶</a></h1>
|
|
<p>The setup system is modular — core components are installed first, then any combination of optional apps can be added. All module scripts are idempotent (safe to re-run).</p>
|
|
<hr />
|
|
<h2 id="core-modules">Core Modules<a class="toc-anchor" href="#core-modules" title="Permanent link">¶</a></h2>
|
|
<p>These are selected during the initial <code>tui-install.sh</code> run.</p>
|
|
<h3 id="pkg-package-managers"><code>pkg</code> — Package Managers<a class="toc-anchor" href="#pkg-package-managers" title="Permanent link">¶</a></h3>
|
|
<p>Installs the AUR helper, language runtimes, and build toolchains:</p>
|
|
<ul>
|
|
<li><strong>yay</strong> — AUR helper (built from source via <code>makepkg</code>)</li>
|
|
<li><strong>Rust / Cargo</strong> — via <code>rustup</code> with the stable toolchain</li>
|
|
<li><strong>nvm</strong> — Node Version Manager; installs Node.js v22 LTS by default</li>
|
|
</ul>
|
|
<h3 id="core-core-packages"><code>core</code> — Core Packages<a class="toc-anchor" href="#core-core-packages" title="Permanent link">¶</a></h3>
|
|
<p>~100 packages including:</p>
|
|
<p><code>7zip</code> · <code>base-devel</code> · <code>bluez</code> · <code>bluez-utils</code> · <code>btop</code> · <code>fastfetch</code> · <code>fdupes</code> · <code>ffmpeg</code> · <code>git</code> · <code>greetd-tuigreet</code> · <code>htop</code> · <code>jq</code> · <code>less</code> · <code>lynx</code> · <code>neovim</code> · <code>networkmanager</code> · <code>openssh</code> · <code>pipewire</code> · <code>pipewire-alsa</code> · <code>pipewire-pulse</code> · <code>ripgrep</code> · <code>rsync</code> · <code>tmux</code> · <code>udiskie</code> · <code>yazi</code> · <code>zram-generator</code></p>
|
|
<p>Also installs <code>pamtester</code> from the AUR.</p>
|
|
<h3 id="svc-core-services"><code>svc</code> — Core Services<a class="toc-anchor" href="#svc-core-services" title="Permanent link">¶</a></h3>
|
|
<p>Enables and starts these systemd units:</p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Service</th>
|
|
<th>Purpose</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>NetworkManager</code></td>
|
|
<td>Network connectivity</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>cronie</code></td>
|
|
<td>Cron daemon</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>fail2ban</code></td>
|
|
<td>Brute-force protection</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>greetd</code></td>
|
|
<td>Login session manager</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>udisks2</code></td>
|
|
<td>Removable media</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<p>Also deploys <code>greetd-tuigreet</code> config from the dotfiles.</p>
|
|
<h3 id="shell-shell-setup"><code>shell</code> — Shell Setup<a class="toc-anchor" href="#shell-shell-setup" title="Permanent link">¶</a></h3>
|
|
<ul>
|
|
<li><strong>zsh</strong> with <strong>Oh My Zsh</strong> and plugins (zsh-syntax-highlighting, zsh-autosuggestions)</li>
|
|
<li><strong>Starship</strong> shell prompt</li>
|
|
<li><strong>Neovim</strong> with Vim-Plug (see <a href="editors.md">Editors</a>)</li>
|
|
<li><strong>Micro</strong> editor</li>
|
|
<li><strong>Yazi</strong> file manager</li>
|
|
<li>Deploys <code>.bashrc</code>, <code>.zshrc</code>, <code>starship.toml</code>, Micro config, Neovim config</li>
|
|
</ul>
|
|
<hr />
|
|
<h2 id="desktop-environments">Desktop Environments<a class="toc-anchor" href="#desktop-environments" title="Permanent link">¶</a></h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Name</th>
|
|
<th>Notes</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>hyprland</code></td>
|
|
<td>Hyprland</td>
|
|
<td>Primary DE — see <a href="hyprland.md">Hyprland</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>sway</code></td>
|
|
<td>Sway</td>
|
|
<td>Wayland tiling WM, lighter</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>kde-plasma</code></td>
|
|
<td>KDE Plasma</td>
|
|
<td>Full-featured with sddm</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>gnome</code></td>
|
|
<td>GNOME</td>
|
|
<td>Modern Wayland DE with gdm</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>cosmic</code></td>
|
|
<td>COSMIC</td>
|
|
<td>Rust-based DE from System76</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>xfce</code></td>
|
|
<td>XFCE</td>
|
|
<td>Lightweight X11 with lightdm</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>lxqt</code></td>
|
|
<td>LXQt</td>
|
|
<td>Lightweight Qt X11 with sddm</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<hr />
|
|
<h2 id="optional-applications">Optional Applications<a class="toc-anchor" href="#optional-applications" title="Permanent link">¶</a></h2>
|
|
<p>Install via <code>tui-install.sh</code> at first install, or add later:</p>
|
|
<pre><code class="language-bash">bash ~/Dotfiles/setup/install-modules.sh
|
|
</code></pre>
|
|
<h3 id="ai-machine-learning">AI & Machine Learning<a class="toc-anchor" href="#ai-machine-learning" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Package</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>ollama</code></td>
|
|
<td>ollama</td>
|
|
<td>Local LLM runner with REST API server</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>llama-cpp</code></td>
|
|
<td>llama.cpp</td>
|
|
<td>Standalone inference CLI + server</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>open-webui</code></td>
|
|
<td>open-webui</td>
|
|
<td>Browser UI for Ollama / OpenAI-compatible backends</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>claude</code></td>
|
|
<td>claude (npm)</td>
|
|
<td>Anthropic Claude Code CLI</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="networking-security">Networking & Security<a class="toc-anchor" href="#networking-security" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Packages</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>networking-cli</code></td>
|
|
<td>nmap · nethogs · mitmproxy · httpie</td>
|
|
<td>Network analysis and HTTP tooling</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>disk-recovery</code></td>
|
|
<td>ddrescue · f3</td>
|
|
<td>Disk imaging and flash drive testing</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>ssh-server</code></td>
|
|
<td>openssh</td>
|
|
<td>SSH daemon with key-auth enforcement</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>wireshark</code></td>
|
|
<td>wireshark-qt</td>
|
|
<td>Packet capture and analysis GUI</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="development">Development<a class="toc-anchor" href="#development" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Packages</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>python</code></td>
|
|
<td>pyright · pipx · pynvim</td>
|
|
<td>Python LSP, isolated tool runner, Neovim integration</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>docker</code></td>
|
|
<td>docker · docker-compose</td>
|
|
<td>Container runtime</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>podman</code></td>
|
|
<td>podman · buildah · podman-compose</td>
|
|
<td>Rootless containers</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>cockpit</code></td>
|
|
<td>cockpit · machines · podman</td>
|
|
<td>Web-based system management UI</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>k8s</code></td>
|
|
<td>kubectl · podman-desktop</td>
|
|
<td>Kubernetes CLI and desktop client</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>db-clients</code></td>
|
|
<td>pgcli · mycli</td>
|
|
<td>Enhanced interactive database CLIs</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>mysql</code></td>
|
|
<td>mariadb</td>
|
|
<td>MariaDB server with initial setup</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="ides-editors">IDEs & Editors<a class="toc-anchor" href="#ides-editors" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Package</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>vscodium</code></td>
|
|
<td>vscodium-bin (AUR)</td>
|
|
<td>VS Code without telemetry</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>zed-ide</code></td>
|
|
<td>zed</td>
|
|
<td>High-performance Rust IDE</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>geany</code></td>
|
|
<td>geany · geany-plugins</td>
|
|
<td>Lightweight IDE</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>codeblocks</code></td>
|
|
<td>codeblocks</td>
|
|
<td>C/C++ IDE</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>kate</code></td>
|
|
<td>kate</td>
|
|
<td>KDE advanced text editor</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="browsers">Browsers<a class="toc-anchor" href="#browsers" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Package</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>chromium</code></td>
|
|
<td>chromium</td>
|
|
<td>Open-source Chromium</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>firefox-browser</code></td>
|
|
<td>firefox</td>
|
|
<td>Mozilla Firefox</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>zen-browser</code></td>
|
|
<td>zen-browser-bin (AUR)</td>
|
|
<td>Privacy-focused Firefox fork</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>nyxt</code></td>
|
|
<td>nyxt (AUR)</td>
|
|
<td>Keyboard-driven, hackable browser</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>librewolf</code></td>
|
|
<td>librewolf-bin (AUR)</td>
|
|
<td>Hardened Firefox fork</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>min-browser</code></td>
|
|
<td>min (AUR)</td>
|
|
<td>Minimal Electron browser</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="gaming">Gaming<a class="toc-anchor" href="#gaming" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Package</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>steam</code></td>
|
|
<td>steam</td>
|
|
<td>Steam gaming platform</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>vesktop</code></td>
|
|
<td>vesktop (AUR)</td>
|
|
<td>Discord client with Vencord built-in</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>spotify</code></td>
|
|
<td>spotify (AUR) + spicetify</td>
|
|
<td>Music player with CyberQueer theme</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>prism</code></td>
|
|
<td>prismlauncher (Flatpak)</td>
|
|
<td>Minecraft launcher</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>vintagestory</code></td>
|
|
<td>vintagestory (AUR)</td>
|
|
<td>Survival / voxel game</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="media-creative">Media & Creative<a class="toc-anchor" href="#media-creative" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Packages</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>ffmpeg</code></td>
|
|
<td>gst-plugin-pipewire · gst-plugins-good · ffmpegthumbnailer</td>
|
|
<td>GStreamer codecs + thumbnailer</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>sox</code></td>
|
|
<td>sox</td>
|
|
<td>Command-line audio processing</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>imagemagick</code></td>
|
|
<td>imagemagick</td>
|
|
<td>Image manipulation suite</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>yt-dlp</code></td>
|
|
<td>yt-dlp</td>
|
|
<td>YouTube / media downloader</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>blender</code></td>
|
|
<td>blender</td>
|
|
<td>3D creation suite</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>gnuplot</code></td>
|
|
<td>gnuplot</td>
|
|
<td>Scientific plotting</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>povray</code></td>
|
|
<td>povray</td>
|
|
<td>Ray-tracing renderer</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="productivity">Productivity<a class="toc-anchor" href="#productivity" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Packages</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>productivity</code></td>
|
|
<td>taskwarrior · watson · jrnl</td>
|
|
<td>Task management, time tracking, journaling</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>himalaya</code></td>
|
|
<td>himalaya (AUR)</td>
|
|
<td>Terminal email client</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>toot</code></td>
|
|
<td>toot (AUR)</td>
|
|
<td>Mastodon CLI client</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="system-utilities">System Utilities<a class="toc-anchor" href="#system-utilities" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Packages</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>tlp</code></td>
|
|
<td>tlp · tlp-rdw</td>
|
|
<td>Laptop battery optimisation</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>zfs</code></td>
|
|
<td>zfs-dkms</td>
|
|
<td>ZFS kernel module</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>wprs</code></td>
|
|
<td>wprs-git (AUR)</td>
|
|
<td>Wayland proxy for remote sessions</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>butter</code></td>
|
|
<td>butter (AUR)</td>
|
|
<td>Btrfs snapshot backup manager</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>localsend</code></td>
|
|
<td>localsend (AUR)</td>
|
|
<td>LAN file transfer (AirDrop-like)</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>croc</code></td>
|
|
<td>croc</td>
|
|
<td>Cross-platform encrypted file transfer</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>localtunnel</code></td>
|
|
<td>localtunnel (npm)</td>
|
|
<td>Expose localhost over a public URL</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>onlyoffice</code></td>
|
|
<td>onlyoffice-bin (AUR)</td>
|
|
<td>Office suite (Docs, Sheets, Slides)</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<h3 id="identity-infrastructure">Identity & Infrastructure<a class="toc-anchor" href="#identity-infrastructure" title="Permanent link">¶</a></h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>freeipa-client</code></td>
|
|
<td>sssd + ipa-client-install + auto-enrollment (see <a href="freeipa-ansible.md">FreeIPA</a>)</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>freeipa-server</code></td>
|
|
<td>Interactive FreeIPA server setup + client generator</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>freeipa-image</code></td>
|
|
<td>OCI / LXC / Proxmox LXC image builder + Keycloak</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<hr />
|
|
<h2 id="container-shell-setups">Container Shell Setups<a class="toc-anchor" href="#container-shell-setups" title="Permanent link">¶</a></h2>
|
|
<p>Scripts in <code>setup/Setup-shell-4-containers/</code> configure a minimal shell environment inside containers or chroots for each major distribution:</p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Script</th>
|
|
<th>Target</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><code>alpine.sh</code></td>
|
|
<td>Alpine Linux</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>arch.sh</code></td>
|
|
<td>Arch Linux</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>debian.sh</code></td>
|
|
<td>Debian</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>fedora.sh</code></td>
|
|
<td>Fedora</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>suse.sh</code></td>
|
|
<td>openSUSE</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>ubuntu.sh</code></td>
|
|
<td>Ubuntu</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>void.sh</code></td>
|
|
<td>Void Linux</td>
|
|
</tr>
|
|
<tr>
|
|
<td><code>other.sh</code></td>
|
|
<td>Generic fallback</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
<footer>
|
|
Generated by md-to-html.sh · CyberQueer theme · 2026-05-18
|
|
</footer>
|
|
</body>
|
|
</html>
|