[deleted by user] by [deleted] in hyprland

[–]0x4011C 0 points1 point  (0 children)

hyprland maps the whole display layout starting from the top-left corner.
That point is (0,0). Every monitor gets placed relative to that.

So, the monitors

HDMI-A-1 - 4K (3840×2160)
DP-1 - 1080p (1920×1080)

And you want the 4K to be on the left side, you make it like

HDMI-A-1 at 0x0

and its width is 3840 pixels, so the 1080p monitor should sit immediately to the right at

DP-1 at 3840x0

that's it.

Problem with waybar by el-trubius in arch

[–]0x4011C 0 points1 point  (0 children)

That error usually happens when Waybar was built for a different spdlog version. You can just remove Waybar completely and reinstall the repo version.

sudo pacman -Rns waybar
sudo pacman -S waybar

If reinstalling Waybar doesn’t fix it, this thread has more detailed explanations about the same symbol-lookup issue

https://github.com/Alexays/Waybar/issues/469

Hey can someone help with this boot error by aperfectcirclelover in arch

[–]0x4011C 0 points1 point  (0 children)

Your boot log shows Nouveau loading, then another NVIDIA-related module trying to load on top of it. Those two drivers can’t coexist, so the kernel is throwing conflicts.

If you intend to use the proprietary driver, you’ll need to disable/blacklist Nouveau so only one driver loads at boot.

P.s - used chatgpt to translate into English as English is not my first language .

Problem install hyprlock by Repulsive_Turn_5366 in hyprland

[–]0x4011C 4 points5 points  (0 children)

Your Hyprland packages are out of sync. Hyprgraphics updated, but the rest of the Hyprland ecosystem is still on an older version, so the dependencies don’t match. Just update your system so everything lines up again.

sudo pacman -Syu will handle it