update: init pypr module

This commit is contained in:
2026-05-28 03:55:30 -04:00
parent d448426b49
commit 4e66b474aa
2 changed files with 19 additions and 0 deletions
+1
View File
@@ -19,6 +19,7 @@ settings["modules"] = {
swaync = true,
swayosd = true,
cliphist = true,
pypr = true,
}
return require("lua.lib.utils").extend_config(settings, "lua.user.settings")
+18
View File
@@ -0,0 +1,18 @@
local bind = require("lua.lib.bind")
local M = {}
local function start_pypr()
hl.exec_cmd("pypr")
end
M.autostart = {
start_pypr,
}
M.binds = {
function()
bind.leader_key("SHIFT + Return", hl.dsp.exec_cmd("pypr toggle term"), "Pyprland: toggle drop terminal", {})
end,
}
return M