gitextract_321fe374/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── discussion-issue-template.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── compatibility.yml │ ├── main.yml │ └── manpages.yml ├── .gitignore ├── .markdownlint.yaml ├── .shellcheckrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.md ├── Containerfile ├── completions/ │ ├── bash/ │ │ ├── distrobox │ │ ├── distrobox-assemble │ │ ├── distrobox-create │ │ ├── distrobox-enter │ │ ├── distrobox-ephemeral │ │ ├── distrobox-generate-entry │ │ ├── distrobox-list │ │ ├── distrobox-rm │ │ ├── distrobox-stop │ │ └── distrobox-upgrade │ └── zsh/ │ ├── _distrobox │ ├── _distrobox-assemble │ ├── _distrobox-create │ ├── _distrobox-enter │ ├── _distrobox-ephemeral │ ├── _distrobox-export │ ├── _distrobox-generate-entry │ ├── _distrobox-host-exec │ ├── _distrobox-init │ ├── _distrobox-list │ ├── _distrobox-rm │ ├── _distrobox-stop │ ├── _distrobox-upgrade │ ├── _distrobox_containers │ ├── _distrobox_images │ └── _distrobox_running_containers ├── distrobox ├── distrobox-assemble ├── distrobox-create ├── distrobox-enter ├── distrobox-ephemeral ├── distrobox-export ├── distrobox-generate-entry ├── distrobox-host-exec ├── distrobox-init ├── distrobox-list ├── distrobox-rm ├── distrobox-stop ├── distrobox-upgrade ├── docs/ │ ├── 404.md │ ├── CNAME │ ├── Gemfile │ ├── README.md │ ├── _config.yml │ ├── _includes/ │ │ ├── footer.html │ │ ├── head.html │ │ └── header.html │ ├── _layouts/ │ │ └── default.html │ ├── assets/ │ │ ├── brand/ │ │ │ └── png/ │ │ │ └── distros/ │ │ │ └── base-distrobox-1.xcf │ │ └── credits.md │ ├── compatibility.md │ ├── featured_articles.md │ ├── posts/ │ │ ├── distrobox_custom.md │ │ ├── execute_commands_on_host.md │ │ ├── install_lilipod_static.md │ │ ├── install_podman_static.md │ │ ├── integrate_vscode_distrobox.md │ │ ├── posts.md │ │ ├── run_latest_gnome_kde_hyprland_on_distrobox.md │ │ ├── run_libvirt_in_distrobox.md │ │ └── steamdeck_guide.md │ ├── style.css │ ├── usage/ │ │ ├── distrobox-assemble.md │ │ ├── distrobox-create.md │ │ ├── distrobox-enter.md │ │ ├── distrobox-ephemeral.md │ │ ├── distrobox-export.md │ │ ├── distrobox-generate-entry.md │ │ ├── distrobox-host-exec.md │ │ ├── distrobox-init.md │ │ ├── distrobox-list.md │ │ ├── distrobox-rm.md │ │ ├── distrobox-stop.md │ │ ├── distrobox-upgrade.md │ │ └── usage.md │ └── useful_tips.md ├── extras/ │ ├── distrobox-example-manifest.ini │ ├── docker-host │ ├── install-podman │ ├── podman-host │ └── vscode-distrobox ├── install ├── man/ │ ├── gen-man │ └── man1/ │ ├── distrobox-assemble.1 │ ├── distrobox-compatibility.1 │ ├── distrobox-create.1 │ ├── distrobox-enter.1 │ ├── distrobox-ephemeral.1 │ ├── distrobox-export.1 │ ├── distrobox-generate-entry.1 │ ├── distrobox-host-exec.1 │ ├── distrobox-init.1 │ ├── distrobox-list.1 │ ├── distrobox-rm.1 │ ├── distrobox-stop.1 │ ├── distrobox-upgrade.1 │ └── distrobox.1 └── uninstall