migrated hyprland config from hyprlang to lua; added mocha palette as lua

This commit is contained in:
2026-08-14 17:33:25 -06:00
parent a372093d22
commit 96c4d36714
21 changed files with 314 additions and 235 deletions
+31
View File
@@ -0,0 +1,31 @@
-- For all categories, see https://wiki.hypr.land/Configuring/Basics/Variables/
hl.config({
input = {
kb_layout = "us",
kb_variant = "",
kb_model = "",
kb_options = "ctrl:nocaps",
kb_rules = "",
follow_mouse = 1,
touchpad = {
natural_scroll = true,
clickfinger_behavior = true,
disable_while_typing = true,
scroll_factor = 0.5,
},
sensitivity = 0, -- -1.0 to 1.0, 0 means no modification
},
})
hl.gesture({
fingers = 3,
direction = "horizontal",
action = "workspace",
})
hl.config({
gestures = {
workspace_swipe_direction_lock = true,
workspace_swipe_direction_lock_threshold = 10,
},
})