From 7c1f67f7ed48d5bbe1dcb90aa70a50ebec78ae8e Mon Sep 17 00:00:00 2001 From: James <125526203+v1deodrome@users.noreply.github.com> Date: Sat, 15 Jun 2024 11:06:56 -0300 Subject: [PATCH] added clarification on enabling no_hardware_cursors (#682) Since disabling hardware cursors is still an important part of having a good time on Hyprland with NVIDIA hardware, it should be better clarified instead of linking to the Variables page with only a warning about WLR_NO_HARDWARE_CURSORS being depreciated. --- pages/Nvidia/_index.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/Nvidia/_index.md b/pages/Nvidia/_index.md index 2de6a01..bc2a5a6 100644 --- a/pages/Nvidia/_index.md +++ b/pages/Nvidia/_index.md @@ -99,12 +99,16 @@ env = LIBVA_DRIVER_NAME,nvidia env = XDG_SESSION_TYPE,wayland env = GBM_BACKEND,nvidia-drm env = __GLX_VENDOR_LIBRARY_NAME,nvidia + +cursor { + no_hardware_cursors = true +} ``` {{< callout type=warning >}} Previously used `WLR_NO_HARDWARE_CURSORS` environment variable has been deprecated. -Do not set it in your configs. See: [cursor](../Configuring/Variables/#cursor) +Do not set it in your configs. Use `cursor:no_hardware_cursors` instead. {{< /callout >}}