45 lines
904 B
Lua
45 lines
904 B
Lua
|
|
-------------------
|
|
--- PERMISSIONS ---
|
|
-------------------
|
|
|
|
-- See https://wiki.hypr.land/Configuring/Permissions/
|
|
-- Please note permission changes here require a Hyprland restart and are not applied on-the-fly
|
|
-- for security reasons
|
|
|
|
-- ecosystem {
|
|
-- enforce_permissions = 1
|
|
-- }
|
|
|
|
-- permission = /usr/(bin|local/bin)/grim, screencopy, allow
|
|
-- permission = /usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland, screencopy, allow
|
|
-- permission = /usr/(bin|local/bin)/hyprpm, plugin, allow
|
|
|
|
|
|
|
|
-----------------
|
|
----- INPUT -----
|
|
----------------
|
|
|
|
-- https://wiki.hypr.land/Configuring/Variables/#input
|
|
hl.config = {
|
|
input = {
|
|
kb_layout = "us",
|
|
-- kb_variant =
|
|
-- kb_model =
|
|
-- kb_options =
|
|
-- kb_rules =
|
|
follow_mouse = 1,
|
|
sensitivity = 0, -- -1.0 - 1.0, 0 means no modification.
|
|
|
|
touchpad = {
|
|
natural_scroll = true
|
|
},
|
|
cursor = {
|
|
inactive_timeout = 0.1,
|
|
},
|
|
},
|
|
}
|
|
|
|
|