hyprland-wiki/pages/Getting Started/Installation.md

217 lines
6.8 KiB
Markdown
Raw Normal View History

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
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
## Distros
2022-08-12 20:46:36 +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
## 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.
2022-08-13 10:41:13 +02:00
{{< hint title=note >}}
This project is under development and is constantly
2022-08-13 01:47:48 +02:00
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
2022-08-24 06:41:31 +02:00
package manager.
2022-08-13 10:41:13 +02:00
{{< /hint >}}
2022-08-12 20:46:36 +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.
2022-08-13 10:41:13 +02:00
{{< tabs "uniqueid" >}}
2022-08-12 20:46:36 +02:00
2023-04-06 20:49:50 +02:00
{{< tab "Arch Linux" >}}
```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
```
2022-08-13 10:41:13 +02:00
{{< /tab >}}
2022-08-13 21:11:35 +02:00
{{< tab "Nix" >}}Read the [Nix page](../../Nix).{{< /tab >}}
{{< tab "openSUSE" >}}
Hyprland is part of factory, starting with snapshot 20230411. To install it simply use zypper
```sh
sudo zypper in hyprland
```
or install the "hyprland" package via YaST2 Software.
2022-08-22 14:27:36 +02: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._
{{< /tab >}}
{{< tab "Fedora" >}}<https://github.com/hyprwm/Hyprland/discussions/284>{{< /tab >}}
{{< tab "Gentoo" >}}
The hyprland package is available in the [guru](https://wiki.gentoo.org/wiki/Project:GURU) overlay.
2022-08-24 06:41:31 +02:00
```sh
eselect repository enable guru
emaint sync -r guru
2022-08-24 06:41:31 +02:00
emerge --ask --verbose hyprland
```
2022-08-24 06:41:31 +02:00
{{</ tab >}}
{{< tab "FreeBSD" >}}
Hyprland and related are in the default repository:
- [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/)
{{</ tab >}}
2022-08-12 20:46:36 +02:00
2022-08-13 10:41:13 +02:00
{{< /tabs >}}
2022-08-12 20:46:36 +02: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/`.
copy the wlroots .so (`libwlroots.so.XX032`) to `/usr/lib/`.
2022-08-12 20:46:36 +02:00
copy the desktop entry (`examples/hyprland.desktop`) to
2022-08-12 20:46:36 +02:00
`/usr/share/wayland-sessions/`
the example config is in `examples/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.
### Manual (Manual Build)
2022-08-12 20:46:36 +02:00
_Arch dependencies_:
2022-08-12 20:46:36 +02:00
```plain
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
```
2022-08-12 20:46:36 +02: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
_openSUSE dependencies_:
```sh
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)" glslang-devel Mesa-libGLESv3-devel "pkgconfig(xcb-errors)"
```
2022-08-22 14:27:36 +02:00
(this should also work on RHEL/Fedora if you remove `Mesa-libGLESv3-devel` and `pkgconfig(xcb-errors)`)
_FreeBSD dependencies_:
```plain
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
export CC=gcc CXX=g++ LDFLAGS="-static-libstdc++ -static-libgcc"
```
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)
Also note that Hyprland uses the C++23 standard, so both your compiler
and your C++ library has to support that (`gcc>=12.1.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)
```Plain
2022-08-12 20:46:36 +02:00
git clone --recursive https://github.com/hyprwm/Hyprland
cd Hyprland
sudo make install
2022-08-12 20:46:36 +02:00
```
### Meson
```plain
2022-08-12 20:46:36 +02:00
meson _build
ninja -C _build
ninja -C _build install --tags runtime,man
2022-08-12 20:46:36 +02:00
```
2022-08-13 01:47:48 +02:00
Refer to [Debugging](../../Contributing-and-Debugging) to see how to build &
debug.
2022-08-12 20:46:36 +02:00
## Crash on launch
2022-08-12 20:46:36 +02: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:
```plain
2022-12-19 23:49:59 +01:00
sudo make clear && sudo make config && make protocols && 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
```
_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`)
```plain
2022-12-19 23:49:59 +01:00
sudo make clear && sudo make config && make protocols && 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:
```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.
Clean before everything and config the root:
```plain
2022-12-19 23:49:59 +01:00
make clear && sudo make config && make protocols
2022-08-12 20:46:36 +02:00
```
Then, configure CMake:
```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:
```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.
```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
```