16 lines
326 B
Lua
16 lines
326 B
Lua
-- #############
|
|
-- ### INPUT ###
|
|
-- #############
|
|
|
|
-- # https://wiki.hyprland.org/Configuring/Variables/#input
|
|
hl.config({
|
|
input = {
|
|
kb_layout = "it",
|
|
follow_mouse = 1,
|
|
sensitivity = 0, -- # -1.0 - 1.0, 0 means no modification.
|
|
touchpad = {
|
|
natural_scroll = true
|
|
},
|
|
}
|
|
})
|