replace libclipboard with xclip.

This commit is contained in:
Miroslav Šedivý 2021-01-28 21:12:35 +01:00
parent ced0a89bbe
commit 11e74459ac
9 changed files with 33 additions and 96 deletions

View file

@ -16,6 +16,5 @@ func (h *MessageHandlerCtx) clipboardSet(session types.Session, payload *message
return nil
}
h.desktop.WriteClipboard(payload.Text)
return nil
return h.desktop.WriteClipboard(payload.Text)
}