28 lines
724 B
Lua
28 lines
724 B
Lua
-- This file will not be overwritten across dots-hyprland updates.
|
|
-- The file name is for the sake of organization and does not matter
|
|
-- See the corresponding files in ~/.config/hypr/hyprland for examples
|
|
if is_file_exists(HOME .. "/.config/hypr/monitors.lua") then
|
|
require("monitors")
|
|
end
|
|
|
|
hl.config({
|
|
input = {
|
|
kb_layout = "de",
|
|
numlock_by_default = true,
|
|
repeat_delay = 250,
|
|
repeat_rate = 35,
|
|
|
|
follow_mouse = 1,
|
|
off_window_axis_events = 2,
|
|
|
|
accel_profile = "flat",
|
|
|
|
touchpad = {
|
|
natural_scroll = true,
|
|
disable_while_typing = true,
|
|
clickfinger_behavior = true,
|
|
scroll_factor = 0.5
|
|
}
|
|
}
|
|
})
|