mirror of
https://github.com/kolunmi/dwlb.git
synced 2025-09-07 11:54:45 +00:00
Set cursor theme and size from XCURSOR
This commit is contained in:
parent
6cd6409ba2
commit
f2e4a19158
6
dwlb.c
6
dwlb.c
@ -591,7 +591,11 @@ pointer_enter(void *data, struct wl_pointer *pointer,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!cursor_image) {
|
if (!cursor_image) {
|
||||||
struct wl_cursor_theme *cursor_theme = wl_cursor_theme_load(NULL, 24 * buffer_scale, shm);
|
const char *size_str = getenv("XCURSOR_SIZE");
|
||||||
|
int size = size_str ? atoi(size_str) : 0;
|
||||||
|
if (size == 0)
|
||||||
|
size = 24;
|
||||||
|
struct wl_cursor_theme *cursor_theme = wl_cursor_theme_load(getenv("XCURSOR_THEME"), size * buffer_scale, shm);
|
||||||
cursor_image = wl_cursor_theme_get_cursor(cursor_theme, "left_ptr")->images[0];
|
cursor_image = wl_cursor_theme_get_cursor(cursor_theme, "left_ptr")->images[0];
|
||||||
cursor_surface = wl_compositor_create_surface(compositor);
|
cursor_surface = wl_compositor_create_surface(compositor);
|
||||||
wl_surface_set_buffer_scale(cursor_surface, buffer_scale);
|
wl_surface_set_buffer_scale(cursor_surface, buffer_scale);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user