Files
dotfiles/hypr/conf/input.lua
2026-06-18 11:36:12 +08:00

34 lines
861 B
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 输入设备:键盘、鼠标、触控板、手势
hl.config({
input = {
kb_layout = "us", -- 键盘布局
kb_variant = "",
kb_model = "",
kb_options = "",
kb_rules = "",
follow_mouse = 1, -- 焦点跟随鼠标
sensitivity = 0, -- 鼠标灵敏度0 = 系统默认)
touchpad = {
natural_scroll = true, -- 自然滚动(反向)
disable_while_typing = true, -- 打字时禁用触控板
clickfinger_behavior = true, -- 点击行为(非按钮区域)
},
},
})
-- 触控手势3/4指水平滑动切换工作区
hl.gesture({
fingers = 3,
direction = "horizontal",
action = "workspace",
})
hl.gesture({
fingers = 4,
direction = "horizontal",
action = "workspace",
})