Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add install docs for Arch Linux and openSUSE #242

Merged
merged 1 commit into from
Nov 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 33 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The AMD64 and ARM64 binaries can be downloaded from GitHub [releases](https://gi

Note that the Homebrew formula will setup shell autocompletion for Bash, Fish and Zsh.

=== "Install with arkade"
=== "arkade"

Install the latest release on Windows, macOS or Linux with:

Expand All @@ -23,7 +23,7 @@ The AMD64 and ARM64 binaries can be downloaded from GitHub [releases](https://gi

Note that the [Arkade](https://github.com/alexellis/arkade) version must be 0.9.11 or newer.

=== "Install with nix"
=== "nix"

Install the latest release with [nix-env](https://nixos.org/manual/nix/unstable/command-ref/nix-env.html):

Expand All @@ -33,7 +33,37 @@ The AMD64 and ARM64 binaries can be downloaded from GitHub [releases](https://gi

Note that the Nix package will setup shell autocompletion for Bash, Fish and Zsh.

=== "Install from source"
=== "yay"

Install the latest release with [yay](https://github.com/Jguer/yay) (or another [AUR helper](https://wiki.archlinux.org/title/AUR_helpers)) for Arch Linux:

```shell
yay -S timoni
```

If you prefer to use the upstream binaries:

```shell
yay -S timoni-bin
```

=== "zypper"

Install the latest release with [zypper](https://github.com/openSUSE/zypper) for openSUSE:

```shell
zypper install timoni
```

To setup shell autocompletion:

```shell
zypper install timoni-bash-completion
zypper install timoni-fish-completion
zypper install timoni-zsh-completion
```

=== "from source"

Using Go >= 1.21:

Expand Down