Files
Hyprdots/lua/modules/pypr.lua
T
2026-05-29 20:17:27 -04:00

21 lines
308 B
Lua

local bind = require("lua.lib.bind")
local M = {}
local function start_pypr()
hl.exec_cmd("pypr")
end
M.autostart = {
start_pypr,
}
M.binds = {
{
keys = bind.with_leader("SHIFT + Return"),
dispatcher = hl.dsp.exec_cmd("pypr toggle term"),
desc = "Pyprland: toggle drop terminal",
},
}
return M