From 0889bd5f6f47847de50be021437775542ef2e91c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=A9clairevoyant?= <848000+eclairevoyant@users.noreply.github.com> Date: Tue, 27 Jun 2023 07:33:46 -0400 Subject: [PATCH] use crosshair instead of left pointer as cursor (#37) --- src/hyprpicker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hyprpicker.cpp b/src/hyprpicker.cpp index 282b891..fd9007d 100644 --- a/src/hyprpicker.cpp +++ b/src/hyprpicker.cpp @@ -76,7 +76,7 @@ void CHyprpicker::recheckACK() { XCURSOR_SIZE = std::stoi(getenv("XCURSOR_SIZE")); } - ls->pCursorImg = wl_cursor_theme_get_cursor(wl_cursor_theme_load(getenv("XCURSOR_THEME"), XCURSOR_SIZE * ls->m_pMonitor->scale, m_pWLSHM), "left_ptr")->images[0]; + ls->pCursorImg = wl_cursor_theme_get_cursor(wl_cursor_theme_load(getenv("XCURSOR_THEME"), XCURSOR_SIZE * ls->m_pMonitor->scale, m_pWLSHM), "crosshair")->images[0]; } } }