From c2bdfb9af76c6101c02515ea3b488423482d7d23 Mon Sep 17 00:00:00 2001 From: Ayush Date: Tue, 21 Jun 2022 20:47:23 +0530 Subject: [PATCH] Add flatpak installation to docs (#1906) Signed-off-by: Ayush Singh --- .../getting-started/installation.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md index 811d9ce324..e04413ecf2 100644 --- a/docs/content/documentation/getting-started/installation.md +++ b/docs/content/documentation/getting-started/installation.md @@ -85,6 +85,26 @@ Zola is available on snapcraft: $ snap install --edge zola ``` +### Flatpak + +Zola is available as a flatpak on [flathub](https://flathub.org): + +```sh +$ flatpak install flathub org.getzola.zola +``` + +To use zola: + +```sh +$ flatpak run org.getzola.zola [command] +``` + +To avoid having to type this everytime, an alaias can be created in `~/.bashrc`: + +```sh +$ alias zola="flatpak run org.getzola.zola" +``` + ### Docker Zola is available on [the GitHub registry](https://github.com/getzola/zola/pkgs/container/zola).