mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-03 04:03:25 +00:00
* website: add padding to home page * docs: slight touch ups to readme * website: reword/reformat content on home and getting started page * website: fix docs page layout - the sidenav for doc pages looks the same as the navbar. - it will be hidden by default on mobile. - sidenav looks like the navbar on mobile and is more seamless in general * docs: update description, logo, dont center badges * docs: fix badges * website: fix padding * website: add borders, add margins for sidenav * website: update description on homepage * website: add margins for blog list * chore: use new logo * docs: use logo and text combined for readme * docs: make logo bigger * website: use combined logo and text asset * docs: remove hilbish-text asset * website: fix navbar expand button * website: add more padding on doc pages * website(blog): add post about website improvements * website(blog): add post about website improvements * website: add more detail on the install page * website: add screenshots section * docs: fix up screenshots section * docs: remove toc and image alignment
61 lines
1.5 KiB
Markdown
61 lines
1.5 KiB
Markdown
---
|
|
title: Install
|
|
description: Steps on how to install Hilbish on all the OSes and distros supported.
|
|
layout: page
|
|
---
|
|
|
|
## Official Binaries
|
|
The best way to get Hilbish is to get a build directly from GitHub.
|
|
At any time, there are 2 versions of Hilbish recommended for download:
|
|
the latest stable release, and development builds from the master branch.
|
|
|
|
You can download both at any time, but note that the development builds may
|
|
have breaking changes.
|
|
|
|
For the latest **stable release**, check here: https://github.com/Rosettea/Hilbish/releases/latest
|
|
For a **development build**: https://nightly.link/Rosettea/Hilbish/workflows/build/master
|
|
|
|
## Compiling
|
|
To read the steps for compiling Hilbish, head over to the [GitHub repository.](https://github.com/Rosettea/Hilbish#build)
|
|
|
|
## Package Repositories
|
|
Methods of installing Hilbish for your Linux distro.
|
|
|
|
### Fedora (COPR)
|
|
An official COPR is offered to install Hilbish easily on Fedora.
|
|
Enable the repo:
|
|
```
|
|
sudo dnf copr enable sammyette/Hilbish
|
|
```
|
|
|
|
And install Hilbish:
|
|
```
|
|
sudo dnf install hilbish
|
|
```
|
|
|
|
Or for the latest development build from master:
|
|
```
|
|
sudo dnf install hilbish-git
|
|
```
|
|
|
|
### Arch Linux (AUR)
|
|
Hilbish is on the AUR. Setup an AUR helper, and install.
|
|
Example with yay:
|
|
|
|
```
|
|
yay -S hilbish
|
|
```
|
|
|
|
Or, from master branch:
|
|
```
|
|
yay -S hilbish-git
|
|
```
|
|
|
|
### Alpine Linux
|
|
Hilbish is currentlty in the testing/edge repository for Alpine.
|
|
Follow the steps [here](https://wiki.alpinelinux.org/wiki/Enable_Community_Repository)
|
|
(Using testing repositories) and install:
|
|
```
|
|
apk add hilbish
|
|
```
|