12 lines
152 B
Lua
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
|