Files
aiolauncher_scripts/main/clipboard-widget.lua
2021-08-06 14:43:34 +03:00

10 lines
231 B
Lua

-- name = "Clipboard"
-- description = "Shows current Clipboard contents"
-- type = "widget"
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
-- version = "1.0"
function on_resume()
ui:show_text(system:get_from_clipboard())
end