local desktop = require("autosway.desktop")
desktop.notify("New Device Connected", "A bluetooth device known as `Example` has been connected", "blueman")
local clipboard = desktop.get_clipboard()
clipboard:clear()
clipboard:set_text("This is some text")
pcall(function()
print(clipboard:get_text())
end)