瀏覽代碼

added a clipboard daemon, changed default services

pull/1/head
XeonSquared 4 年之前
父節點
當前提交
2c9bb81fe9
共有 2 個文件被更改,包括 12 次插入0 次删除
  1. +1
    -0
      default-init.txt
  2. +11
    -0
      service/clipboard.lua

+ 1
- 0
default-init.txt 查看文件

@@ -1,2 +1,3 @@
minitel.lua
tape-iofs.lua
fsmanager.service

+ 11
- 0
service/clipboard.lua 查看文件

@@ -0,0 +1,11 @@
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

Loading…
取消
儲存