2024-02-20 21:16:07 +01:00
|
|
|
---
|
|
|
|
weight: 2
|
|
|
|
title: Installation
|
|
|
|
---
|
|
|
|
|
2022-08-12 20:46:36 +02:00
|
|
|
# Foreword
|
|
|
|
|
2022-08-24 06:41:31 +02:00
|
|
|
Due to their proprietary nature, Nvidia GPUs have limited compatibility with
|
2024-02-20 21:16:07 +01:00
|
|
|
Hyprland. If you want to try Hyprland on Nvidia regardless (many people have
|
|
|
|
reported successes), follow the [Nvidia page](../../nvidia) after installing
|
|
|
|
Hyprland.
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
## Distros
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-08-22 14:06:25 +02:00
|
|
|
Arch, NixOS and openSUSE Tumbleweed are very supported. For any other distro
|
|
|
|
(not based on Arch/Nix) you might have varying amounts of success. However,
|
|
|
|
since Hyprland is extremely bleeding-edge, distros like Pop!\_OS, Ubuntu, etc.
|
|
|
|
might have **major** issues running Hyprland.
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
## Installation
|
2022-08-12 20:46:36 +02:00
|
|
|
|
|
|
|
Installing Hyprland is very easy. Either you install it from your local package
|
|
|
|
provider (if they provide pkgs for Hyprland) or you install/build it yourself.
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{< callout >}}
|
|
|
|
|
|
|
|
This project is under development and is constantly changing. If you want to
|
|
|
|
keep up to date with the latest commits, please consider updating your packages
|
|
|
|
with `yay -Syu --devel`, or your other preferred package manager.
|
|
|
|
|
|
|
|
{{< /callout >}}
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
### Packages
|
2022-08-12 20:46:36 +02:00
|
|
|
|
|
|
|
**WARNING:** I do not maintain any packages. If they are broken, try building
|
|
|
|
from source first.
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{% details title="Arch" closed="true" %}}
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2023-04-06 20:49:50 +02:00
|
|
|
hyprland-git (AUR) - compiles from latest source
|
|
|
|
hyprland - binary x86 tagged release
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="Nix" closed="true" %}}
|
2023-07-17 18:14:43 +02:00
|
|
|
|
|
|
|
Enable Hyprland in your NixOS configuration:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
programs.hyprland.enable = true;
|
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
For more details, read the [Nix page](../../nix).
|
2023-07-17 18:14:43 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="openSUSE*" closed="true" %}}
|
|
|
|
|
|
|
|
Hyprland is part of factory, starting with snapshot 20230411. To install it
|
|
|
|
simply use zypper
|
2022-08-22 14:06:25 +02:00
|
|
|
|
|
|
|
```sh
|
2023-04-13 16:09:46 +02:00
|
|
|
sudo zypper in hyprland
|
2022-08-22 14:06:25 +02:00
|
|
|
```
|
|
|
|
|
2023-04-13 16:09:46 +02:00
|
|
|
or install the "hyprland" package via YaST2 Software.
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Alternatively, you can also follow the instructions under
|
|
|
|
["Manual (Manual Build)"](#manual-manual-build) to build Hyprland yourself.
|
|
|
|
|
|
|
|
Note: _Hyprland is not available for Leap, as most libraries (and compiler) that
|
|
|
|
Hyprland needs are too old._
|
|
|
|
|
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="Fedora*" closed="true" %}}
|
2022-08-22 14:06:25 +02:00
|
|
|
|
2023-12-03 18:46:26 +01:00
|
|
|
On Fedora 39 and Rawhide, run:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
sudo dnf install hyprland
|
2023-12-07 18:58:45 +01:00
|
|
|
sudo dnf install hyprland-devel # If you want to build plugins
|
2023-12-03 18:46:26 +01:00
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Builds for Fedora 38 and additional packages are available in the
|
|
|
|
[solopasha/hyprland](https://copr.fedorainfracloud.org/coprs/solopasha/hyprland)
|
|
|
|
Copr repository.
|
|
|
|
|
|
|
|
If you are on an older version of Fedora, you can also compile it yourself by
|
|
|
|
following the instructions
|
|
|
|
[here](https://github.com/hyprwm/Hyprland/discussions/284)
|
|
|
|
|
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="Gentoo*" closed="true" %}}
|
2023-12-07 18:58:45 +01:00
|
|
|
|
2024-01-05 12:45:06 +01:00
|
|
|
The hyprland package is available in the main tree:
|
2023-07-21 10:24:15 +02:00
|
|
|
|
|
|
|
```sh
|
|
|
|
emerge --ask gui-wm/hyprland
|
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Additional packages like hyprlock, hypridle, xdg-desktop-portal-hyprland,
|
|
|
|
hyprland-plugins, hyprpaper and hyprpicker are available in the
|
|
|
|
[GURU](https://wiki.gentoo.org/wiki/Project:GURU) overlay. Community-contributed
|
|
|
|
scripts are also available in GURU as part of the hyprland-contrib package.
|
2022-08-24 06:41:31 +02:00
|
|
|
|
2022-08-20 22:52:51 +02:00
|
|
|
```sh
|
2023-02-19 21:59:58 +01:00
|
|
|
eselect repository enable guru
|
|
|
|
emaint sync -r guru
|
2024-01-05 12:45:06 +01:00
|
|
|
|
2024-02-25 01:18:28 +01:00
|
|
|
emerge --ask gui-apps/hyprlock
|
|
|
|
emerge --ask gui-apps/hypridle
|
2024-01-05 12:45:06 +01:00
|
|
|
emerge --ask gui-libs/xdg-desktop-portal-hyprland
|
2023-07-21 10:24:15 +02:00
|
|
|
emerge --ask gui-apps/hyprland-plugins
|
|
|
|
emerge --ask gui-apps/hyprpaper
|
|
|
|
emerge --ask gui-apps/hyprpicker
|
|
|
|
emerge --ask gui-wm/hyprland-contrib
|
2022-08-20 22:52:51 +02:00
|
|
|
```
|
2022-08-24 06:41:31 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
For USE flags and more details, read the
|
|
|
|
[Gentoo wiki page](https://wiki.gentoo.org/wiki/Hyprland) about Hyprland.
|
|
|
|
|
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="FreeBSD*" closed="true" %}}
|
2023-07-21 10:24:15 +02:00
|
|
|
|
2022-12-20 17:09:42 +01:00
|
|
|
Hyprland and related are in the default repository:
|
2024-02-20 21:16:07 +01:00
|
|
|
|
2022-12-20 17:09:42 +01:00
|
|
|
- [hyprland](https://www.freshports.org/x11-wm/hyprland)
|
|
|
|
- [hyprpaper](https://www.freshports.org/x11/hyprpaper)
|
|
|
|
- [hyprpicker](https://www.freshports.org/x11/hyprpicker)
|
|
|
|
- [xdg-desktop-portal-hyprland](https://www.freshports.org/x11/xdg-desktop-portal-hyprland)
|
|
|
|
- [Other Wayland stuff](https://www.freshports.org/wayland/)
|
2024-02-20 21:16:07 +01:00
|
|
|
|
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="Ubuntu 23.04*" closed="true" %}}
|
|
|
|
|
2023-05-01 16:47:32 +02:00
|
|
|
Build Dependencies:
|
2024-02-20 21:16:07 +01:00
|
|
|
|
2023-05-01 16:47:32 +02:00
|
|
|
```bash
|
2023-12-07 18:20:30 +01:00
|
|
|
sudo apt-get install -y meson wget build-essential ninja-build cmake-extras cmake gettext gettext-base fontconfig libfontconfig-dev libffi-dev libxml2-dev libdrm-dev libxkbcommon-x11-dev libxkbregistry-dev libxkbcommon-dev libpixman-1-dev libudev-dev libseat-dev seatd libxcb-dri3-dev libegl-dev libgles2 libegl1-mesa-dev glslang-tools libinput-bin libinput-dev libxcb-composite0-dev libavutil-dev libavcodec-dev libavformat-dev libxcb-ewmh2 libxcb-ewmh-dev libxcb-present-dev libxcb-icccm4-dev libxcb-render-util0-dev libxcb-res0-dev libxcb-xinput-dev xdg-desktop-portal-wlr libtomlplusplus3
|
2023-05-01 16:47:32 +02:00
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
you will also need to build the latest wayland, wayland-protocols, and
|
|
|
|
libdisplay-info tagged releases from source
|
|
|
|
|
|
|
|
for more info refer to the
|
|
|
|
[Ubuntu Guide For Installing And Building Hyprland Gist](https://gist.github.com/Vertecedoc4545/3b077301299c20c5b9b4db00f4ca6000)
|
2023-05-01 16:47:32 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{< callout type=warning >}}
|
2023-05-01 16:47:32 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Please note that since Ubuntu is generally behind with dependencies, it's not
|
|
|
|
guaranteed that the build process will work at all. Even if it is, it's likely
|
|
|
|
that it will break at some point in the future.
|
2023-05-01 16:47:32 +02:00
|
|
|
|
|
|
|
Refer to the gist if anything fails.
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{< /callout >}}
|
|
|
|
|
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="Void Linux*" closed="true" %}}
|
|
|
|
|
|
|
|
Hyprland is not available for Void Linux from the official repositories
|
|
|
|
[as Hyprland doesn't build against tagged wlroots](https://github.com/void-linux/void-packages/issues/37544),
|
|
|
|
however template files are available
|
|
|
|
[from a third party](https://github.com/Makrennel/hyprland-void) which can build
|
|
|
|
Hyprland [using xbps-src](https://github.com/void-linux/void-packages).
|
|
|
|
|
|
|
|
For further instructions on building with the third party resource, refer to the
|
|
|
|
[README](https://github.com/Makrennel/hyprland-void/blob/master/README.md).
|
2023-05-01 16:47:32 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{< callout type=warning >}}
|
|
|
|
|
|
|
|
As always, when using third party scripts exercise caution and understand what
|
|
|
|
the script does.
|
|
|
|
|
|
|
|
{{< /callout >}}
|
|
|
|
|
|
|
|
{{% /details %}}
|
|
|
|
|
|
|
|
{{% details title="Slackware*" closed="true" %}}
|
|
|
|
|
|
|
|
```plain
|
|
|
|
hyprland-bin (SlackBuilds) - Prebuilt release for Slackware ready for install
|
|
|
|
```
|
2023-06-27 13:34:27 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Hyprland is not installed by default on the current release of Slackware.
|
2023-06-27 13:34:27 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
For detailed instructions on installing this build see
|
|
|
|
[here](https://slackbuilds.org/repository/15.0/desktop/hyprland-bin/)
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
{{% /details %}}
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
_**\* Unofficial, no official support is provided. These instructions are
|
|
|
|
community-driven, and no guarantee is provided for their validity.**_
|
2023-07-16 00:32:40 +02:00
|
|
|
|
2022-12-20 17:09:42 +01:00
|
|
|
### Manual (Releases, Linux-only)
|
2022-08-12 20:46:36 +02:00
|
|
|
|
|
|
|
Download the most recent release.
|
|
|
|
|
|
|
|
copy the binary (Hyprland) to `/usr/bin/`.
|
|
|
|
|
|
|
|
copy hyprctl to `/usr/bin/`.
|
|
|
|
|
2024-01-17 14:40:57 +01:00
|
|
|
copy hyprpm to `/usr/bin/`.
|
|
|
|
|
2022-11-09 21:07:45 +01:00
|
|
|
copy the wlroots .so (`libwlroots.so.XX032`) to `/usr/lib/`.
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2023-10-24 18:51:53 +02:00
|
|
|
copy the desktop entry (`example/hyprland.desktop`) to
|
2022-08-12 20:46:36 +02:00
|
|
|
`/usr/share/wayland-sessions/`
|
|
|
|
|
2023-10-24 18:51:53 +02:00
|
|
|
the example config is in `example/hyprland.conf`.
|
2022-08-12 20:46:36 +02:00
|
|
|
|
|
|
|
For updating later on, you can overwrite the binaries (hyprctl, hyprland and
|
|
|
|
libwlroots), you don't need to update anything else.
|
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
### Manual (Manual Build)
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
_Arch dependencies_:
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2023-12-07 18:20:30 +01:00
|
|
|
yay -S gdb ninja gcc cmake meson libxcb xcb-proto xcb-util xcb-util-keysyms libxfixes libx11 libxcomposite xorg-xinput libxrender pixman wayland-protocols cairo pango seatd libxkbcommon xcb-util-wm xorg-xwayland libinput libliftoff libdisplay-info cpio tomlplusplus
|
2022-08-13 01:45:14 +02:00
|
|
|
```
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
_(Please make a pull request or open an issue if any packages are missing from
|
|
|
|
the list)_
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
_openSUSE dependencies_:
|
2022-08-22 14:06:25 +02:00
|
|
|
|
|
|
|
```sh
|
2024-02-20 21:16:07 +01:00
|
|
|
zypper in gcc-c++ git meson cmake "pkgconfig(cairo)" "pkgconfig(egl)" "pkgconfig(gbm)" "pkgconfig(gl)" "pkgconfig(glesv2)" "pkgconfig(libdrm)" "pkgconfig(libinput)" "pkgconfig(libseat)" "pkgconfig(libudev)" "pkgconfig(pango)" "pkgconfig(pangocairo)" "pkgconfig(pixman-1)" "pkgconfig(vulkan)" "pkgconfig(wayland-client)" "pkgconfig(wayland-protocols)" "pkgconfig(wayland-scanner)" "pkgconfig(wayland-server)" "pkgconfig(xcb)" "pkgconfig(xcb-icccm)" "pkgconfig(xcb-renderutil)" "pkgconfig(xkbcommon)" "pkgconfig(xwayland)" "pkgconfig(xcb-errors)" glslang-devel Mesa-libGLESv3-devel tomlplusplus-devel
|
2022-08-22 14:06:25 +02:00
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
(this should also work on RHEL/Fedora if you remove `Mesa-libGLESv3-devel` and
|
|
|
|
`pkgconfig(xcb-errors)`)
|
2022-08-22 14:06:25 +02:00
|
|
|
|
2022-12-20 17:09:42 +01:00
|
|
|
_FreeBSD dependencies_:
|
|
|
|
|
|
|
|
```plain
|
2023-04-15 21:43:28 +02:00
|
|
|
pkg install git pkgconf gmake gcc evdev-proto cmake wayland-protocols wayland libglvnd libxkbcommon libinput cairo pango pixman libxcb
|
|
|
|
pkg install meson jq `pkg rquery %dn wlroots` hwdata libdisplay-info libliftoff
|
2022-12-20 17:09:42 +01:00
|
|
|
export CC=gcc CXX=g++ LDFLAGS="-static-libstdc++ -static-libgcc"
|
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
_Ubuntu 23.04 dependencies_: refer to the Ubuntu tab above
|
2023-05-01 16:47:32 +02:00
|
|
|
|
2022-08-12 20:46:36 +02:00
|
|
|
Please note Hyprland builds `wlroots`. Make sure you have the dependencies of
|
|
|
|
wlroots installed, you can make sure you have them by installing wlroots
|
|
|
|
separately (Hyprland doesn't mind)
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Also note that Hyprland uses the C++23 standard, so both your compiler and your
|
|
|
|
C++ library has to support that (`gcc>=13.0.0` or `clang>=15`). On Clang-based
|
|
|
|
systems libc++ may be used by default, so until libc++ supports C++23 you have
|
|
|
|
to pass `-stdlib=libstdc++` or switch to GCC.
|
2022-08-12 20:46:36 +02:00
|
|
|
|
|
|
|
### CMake (recommended)
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```Plain
|
2022-08-12 20:46:36 +02:00
|
|
|
git clone --recursive https://github.com/hyprwm/Hyprland
|
|
|
|
cd Hyprland
|
2023-10-14 19:52:53 +02:00
|
|
|
make all && sudo make install
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
_CMake is always recommended as it's the intended way Hyprland should be
|
|
|
|
installed._
|
2023-05-03 22:31:29 +02:00
|
|
|
|
2022-08-12 20:46:36 +02:00
|
|
|
### Meson
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2023-05-16 23:18:25 +02:00
|
|
|
meson subprojects update --reset
|
|
|
|
meson setup build
|
|
|
|
ninja -C build
|
|
|
|
ninja -C build install --tags runtime,man
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Refer to [Debugging](../../contributing-and-debugging) to see how to build &
|
2022-08-13 01:47:48 +02:00
|
|
|
debug.
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
## Crash on launch
|
2022-08-12 20:46:36 +02:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
See [Crashes and Bugs](../../crashes-and-bugs).
|
2022-08-12 20:46:36 +02:00
|
|
|
|
|
|
|
## Custom installation (legacy renderer, etc)
|
|
|
|
|
|
|
|
cd into the hyprland repo.
|
|
|
|
|
|
|
|
for legacy renderer:
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2023-10-14 19:52:53 +02:00
|
|
|
make legacyrenderer && sudo cp ./build/Hyprland /usr/bin && sudo cp ./example/hyprland.desktop /usr/share/wayland-sessions
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
2022-10-23 16:35:39 +02:00
|
|
|
_please note the legacy renderer may not support some graphical features._
|
2022-08-12 20:46:36 +02:00
|
|
|
<br/><br/> Any other config: (replace \[PRESET\] with your preset, `release`
|
|
|
|
`debug` `legacyrenderer` `legacyrendererdebug`)
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2023-10-14 19:52:53 +02:00
|
|
|
make [PRESET] && sudo cp ./build/Hyprland /usr/bin && sudo cp ./example/hyprland.desktop /usr/share/wayland-sessions
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Custom Build flags
|
|
|
|
|
|
|
|
To apply custom build flags, you'll have to ditch make.
|
|
|
|
|
|
|
|
Supported custom build flags:
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2022-08-12 20:46:36 +02:00
|
|
|
NO_XWAYLAND - Removes XWayland support
|
2023-01-11 16:29:34 +01:00
|
|
|
NO_SYSTEMD - Removes systemd dependencies
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
How to?
|
|
|
|
|
|
|
|
Go to the root repo.
|
|
|
|
|
|
|
|
Then, configure CMake:
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2022-08-12 20:46:36 +02:00
|
|
|
mkdir -p build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -D<YOUR_FLAG>:STRING=true -H./ -B./build -G Ninja
|
|
|
|
```
|
|
|
|
|
|
|
|
Change `<YOUR_FLAG>` to one of the custom build flags. You **are allowed to**
|
|
|
|
use multiple at once, then add another `-D<YOUR_FLAG_2>:STRING=true`
|
|
|
|
|
|
|
|
You can of course also change the `BUILD_TYPE` to `Debug`.
|
|
|
|
|
|
|
|
Now, build:
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2022-08-22 00:05:38 +02:00
|
|
|
cmake --build ./build --config Release --target all -j $(nproc)
|
2022-08-12 20:46:36 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
If you configured in `Debug`, change the `--config` to `Debug` as well.
|
|
|
|
|
|
|
|
Now, of course, install manually.
|
|
|
|
|
2022-08-13 01:45:14 +02:00
|
|
|
```plain
|
2022-08-12 20:46:36 +02:00
|
|
|
sudo cp ./build/Hyprland /usr/bin && sudo cp ./example/hyprland.desktop /usr/share/wayland-sessions
|
2023-01-22 08:26:42 +01:00
|
|
|
```
|
2024-01-17 14:40:57 +01:00
|
|
|
|
2024-02-20 21:16:07 +01:00
|
|
|
Lastly, copy hyprctl, hyprpm, and wlroots as mentioned
|
|
|
|
[here](#manual-releases-linux-only)
|