mirror of
https://git.shadowkat.net/izaya/OC-PsychOS2.git
synced 2024-11-22 03:54:20 -05:00
clipboard: Make the clipboard service work under the new service sys
This also adds a [.editorconfig](https://editorconfig.org/) and adds apidoc.md to the gitignore.
This commit is contained in:
parent
124b39c96d
commit
5213835970
5
.editorconfig
Normal file
5
.editorconfig
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
root = true
|
||||||
|
|
||||||
|
[*.lua]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 1
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
*.cpio
|
*.cpio
|
||||||
*.af
|
*.af
|
||||||
|
apidoc.md
|
||||||
/target
|
/target
|
||||||
/doc
|
/doc
|
||||||
|
@ -1,11 +1,17 @@
|
|||||||
local lc = computer.uptime()
|
|
||||||
_G.clip = ""
|
_G.clip = ""
|
||||||
while true do
|
|
||||||
local eT = {coroutine.yield()}
|
function start()
|
||||||
if eT[1] == "clipboard" then
|
return os.spawn(function()
|
||||||
if computer.uptime() > lc + 5 then
|
local lc
|
||||||
_G.clip = ""
|
while true do
|
||||||
end
|
local eT = {coroutine.yield()}
|
||||||
_G.clip = _G.clip .. eT[3]
|
if eT[1] == "clipboard" then
|
||||||
end
|
if computer.uptime() > lc + 5 then
|
||||||
|
_G.clip = ""
|
||||||
|
end
|
||||||
|
lc = computer.uptime()
|
||||||
|
_G.clip = _G.clip .. eT[3]
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user