1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2026-01-10 00:12:28 -05:00
OC-PsychOS2/service/clipboard.lua
2025-09-08 12:38:20 +00:00

18 lines
329 B
Lua

_G.clip = ""
function start()
return os.spawn(function()
local lc
while true do
local eT = {coroutine.yield()}
if eT[1] == "clipboard" then
if computer.uptime() > lc + 5 then
_G.clip = ""
end
lc = computer.uptime()
_G.clip = _G.clip .. eT[3]
end
end
end)
end
return {start=start}