Hyprland: Difference between revisions

From Alpine Linux
(fixed wiki tags added categories)
Line 1: Line 1:
Hyprland is a tiling window manager.
This wiki page is about [hyprland.org Hyprland], a tiling window manager. Hyprland is available in Alpine Linux [[Repositories#Community|community repository]] for [[Repositories#Edge|edge]] release.  


https://wiki.hyprland.org/Getting-Started/Master-Tutorial/
Refer [https://wiki.hyprland.org/Getting-Started/Master-Tutorial/ hyprland Tutorial] to get started on using Hyprland.


== Troubleshooting ==
== Troubleshooting ==
Line 11: Line 11:
The ugly graphic goes away when you've launched a [https://wiki.hyprland.org/Useful-Utilities/Wallpapers/ wallpaper utility], but the scary message remains.
The ugly graphic goes away when you've launched a [https://wiki.hyprland.org/Useful-Utilities/Wallpapers/ wallpaper utility], but the scary message remains.


The canonical way to solve this is to
The canonical way to solve this is to install {{pkg|hyprland-wallpapers}} package using the command:


    apk add hyprland-wallpaper
{{Cmd|# apk add hyprland-wallpapers}}


Or you can just have some file at /usr/{local/,}share/hypr/wall0.png and have
Or you can just have some file at {{Path|/usr/share/hypr/wall0.png}} or {{Path|/usr/local/share/hypr/wall0.png}} and have


<Pre>
     misc {
     misc {
         force_default_wallpaper = 0
         force_default_wallpaper = 0
     }
     }
</Pre>


in your config
in your Hyprland config file.
 
== See Also ==
* [https://wiki.hyprland.org Official Hyprland wiki]
 
[[Category:Desktop]]
[[Category:Window Managers]]
[[Category:Wayland]]

Revision as of 17:00, 11 November 2024

This wiki page is about [hyprland.org Hyprland], a tiling window manager. Hyprland is available in Alpine Linux community repository for edge release.

Refer hyprland Tutorial to get started on using Hyprland.

Troubleshooting

Black/Magenta checkerboard background: Hyprland failed to load 1 essential asset

As of Hyprland 0.45.0, upstream shows a scary message (and an ugly graphic) if you don't have their wallpapers installed.

The ugly graphic goes away when you've launched a wallpaper utility, but the scary message remains.

The canonical way to solve this is to install hyprland-wallpapers package using the command:

# apk add hyprland-wallpapers

Or you can just have some file at /usr/share/hypr/wall0.png or /usr/local/share/hypr/wall0.png and have

    misc {
        force_default_wallpaper = 0
    }

in your Hyprland config file.

See Also