{% extends "base.html" %} {% block title %}Packages — garuda-pilot{% endblock %} {% block content %}

Explicitly Installed Packages {{ total }} packages

Packages you explicitly installed — not dependencies pulled in automatically. Use the Copy Reinstall Command buttons to regenerate your setup on a fresh system. Install dates reflect when garuda-pilot first saw each package in the pacman log.
{% macro source_section(title, icon, source_key, color) %} {% if groups[source_key] %}

{{ icon }} {{ title }} {{ groups[source_key]|length }} packages

{% if reinstall_commands[source_key] is defined %} {% endif %}
{% if reinstall_commands[source_key] is defined %}
{{ reinstall_commands[source_key] }}
{% endif %} {% for pkg in groups[source_key] %} {% endfor %}
Package Description Version First Seen
{% if source_key == 'flatpak' %} {{ pkg.name }} {% elif source_key == 'pipx' %} {{ pkg.name }} {% elif pkg.url %} {{ pkg.name }} {% else %} {{ pkg.name }} {% endif %} {{ pkg.description or '—' }} {{ pkg.version or '—' }} {{ pkg.installed_at[:10] if pkg.installed_at else '—' }}
{% endif %} {% endmacro %} {{ source_section("Pacman", "📦", "pacman", "var(--blue)") }} {{ source_section("AUR", "🏗️", "aur", "var(--accent)") }} {{ source_section("Flatpak", "📦", "flatpak", "#c4a7e7") }} {{ source_section("Pipx", "🐍", "pipx", "var(--green)") }} {% if not groups.pacman and not groups.aur and not groups.flatpak and not groups.pipx %}

No manually installed packages found yet. History is still being built.

{% endif %} {% endblock %}