feat: hyprland done, testing needed, add wlogout config

This commit is contained in:
2026-06-14 07:54:36 +02:00
parent 37cf063eb1
commit d2e569114f
18 changed files with 180 additions and 8 deletions
+15
View File
@@ -28,6 +28,21 @@ return function(is_laptop)
end)
end
hl.bind("Shift + T", function ()
hl.device({
name = "pnp0c50:00-093a:0255-touchpad",
enabled = false
})
hl.dispatch(hl.dsp.exec_cmd("notify-send 'Disabled Trackpad' --app-name='Hyprctl'"))
end)
hl.bind("T", function ()
hl.device({
name = "pnp0c50:00-093a:0255-touchpad",
enabled = true
})
hl.dispatch(hl.dsp.exec_cmd("notify-send 'Enabled Trackpad' --app-name='Hyprctl'"))
end)
hl.bind("Escape", function()
exit_submap()
end)