make hypr-nvim smart-nav better, now use ipc for quicker communication than synth binds

This commit is contained in:
2026-07-03 11:09:56 +02:00
parent bdb56cb1c7
commit 5650e2f96a
9 changed files with 126 additions and 55 deletions

View File

@@ -3,7 +3,8 @@ hl.monitor({
output = MAIN_DISPLAY,
mode = "2560x1440@240",
position = "auto",
scale = "auto"
scale = "auto",
vrr = 2,
})
hl.monitor({
@@ -11,7 +12,7 @@ hl.monitor({
mode = "preferred",
position = "auto-left",
scale = "auto",
transform = 1
transform = 1,
})
-- backup monitor
@@ -60,9 +61,15 @@ hl.config({
},
cursor = {
no_hardware_cursors = 1,
no_warps = true,
hide_on_key_press = true
no_hardware_cursors = true,
-- no_warps = true,
hide_on_key_press = true,
inactive_timeout = 20,
default_monitor = MAIN_DISPLAY
},
render = {
direct_scanout = 2
}
})