update nvim and hypr conf

This commit is contained in:
2026-06-22 13:33:12 +02:00
parent 04d720f6c8
commit b80cd3136b
10 changed files with 140 additions and 112 deletions

View File

@@ -7,4 +7,5 @@ hl.on("hyprland.start", function()
hl.exec_cmd("/usr/libexec/hyprpolkitagent")
hl.exec_cmd("dunst")
hl.exec_cmd("killall -q waybar; sleep .5 && env LC_TIME=de_DE.UTF-8 waybar")
hl.exec_cmd("hypridle")
end)

View File

@@ -60,7 +60,9 @@ hl.config({
},
cursor = {
no_hardware_cursors = 1
no_hardware_cursors = 1,
no_warps = true,
hide_on_key_press = true
}
})
@@ -114,9 +116,11 @@ hl.config({
input = {
kb_layout = "de",
kb_variant = "nodeadkeys",
follow_mouse = 1,
sensitivity = 0.2,
force_no_accel = 1,
sensitivity = 0,
-- force_no_accel = 1,
accel_profile = "flat",
}
})

View File

@@ -43,17 +43,19 @@ hl.window_rule({
title = "^(notificationtoasts_.*)$"
},
no_focus = true,
no_initial_focus = true
no_initial_focus = true,
focus_on_activate = false,
suppress_event = "activate activatefocus"
})
hl.window_rule({
name = "discord",
match = {
class = "discord"
class = "[dD]iscord"
},
monitor = SECONDARY_DISPLAY,
workspace = "6 silent",
no_initial_focus = true,
focus_on_activate = false,
suppress_event = "activatefocus"
suppress_event = "active activatefocus"
})