summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-08-28 20:10:49 +1000
committerGitHub <noreply@github.com>2023-08-28 20:10:49 +1000
commitecd2a14a156c7df994e0c95f013e0c7db80ca48d (patch)
treec24c89b45a1c634492d359b605e562c981e2654d /README.md
parent8dfa8dc48ca2e44467bd1da817c9e8887a5deec3 (diff)
parent1a2a301aa2b5f0263d92933da60f75ac65eb5e2a (diff)
Add install instructions for openSUSE (#2727)
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.md b/README.md
index 09b76faca..1eabf66fd 100644
--- a/README.md
+++ b/README.md
@@ -320,6 +320,25 @@ ebuild lazygit-${LAZYGIT_VERSION}.ebuild manifest
emerge lazygit
```
+### openSUSE
+
+The lazygit package is currently built in [devel:languages:go/lazygit](https://build.opensuse.org/package/show/devel:languages:go/lazygit).
+
+To install lazygit on openSUSE Tumbleweed run:
+
+```sh
+sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/openSUSE_Factory/devel:languages:go.repo
+sudo zypper ref && sudo zypper in lazygit
+```
+
+To install lazygit on openSUSE Leap run:
+
+```sh
+source /etc/os-release
+sudo zypper ar https://download.opensuse.org/repositories/devel:/languages:/go/$VERSION_ID/devel:languages:go.repo
+sudo zypper ref && sudo zypper in lazygit
+```
+
### FreeBSD
```sh