Skip to content

gnoblin.configure.cursor ​

Configure this part of gnoblin.configure with the cursor key.

Configure the compositor cursor theme and size in Gnoblin's config:

lua
gnoblin.configure {
    cursor = {
        theme = "Adwaita-Hyprcursor",
        size = 24,
    },
}
SettingAccepted valueDefault
themeInstalled Hyprcursor theme nameAdwaita-Hyprcursor
sizeInteger from 1 to 256 logical pixels24

Changes apply on config reload. See the cursor themes guide for installation paths and theme details.

Type definition ​

This is schema pseudocode in Lua table form. ? marks an optional field.

lua
gnoblin.configure {
    cursor = {
        theme = string?,
        size = integer?, -- 1–256 logical pixels
    },
}