1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-20 19:06:32 -04:00
OC-PsychOS2/service/clipboard.lua

12 lines
215 B
Lua

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