Files
Hyprdots/lua/modules/cliphist.lua
T
2026-06-12 17:12:25 -04:00

12 lines
154 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