Files
Hyprdots/lua/modules/cliphist.lua
T
2026-05-28 03:34:22 -04:00

12 lines
152 B
Lua

local M = {}
local function start_wl_clipboard()
hl.exec_cmd("wl-paste --watch cliphist store")
end
M.autostart = {
start_wl_clipboard,
}
return M