Multi-platform app that allows your devices to communicate
Find a file
2019-06-12 23:32:07 +02:00
.gitlab/merge_request_templates Add basic Merge Request templates 2019-01-23 17:50:11 +00:00
app add icons for pair, accept, reject 2019-03-26 12:30:04 +00:00
cli Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
cmake More https 2019-03-24 10:42:34 +01:00
core Remove non-toplevel project() definitions 2019-06-12 22:47:17 +02:00
daemon Remove non-toplevel project() definitions 2019-06-12 22:47:17 +02:00
data SVN_SILENT made messages (.desktop file) - always resolve ours 2019-05-08 05:42:59 +02:00
declarativeplugin Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
doc Reverted docs version as we didn't change them. 2016-07-22 13:13:30 +02:00
fileitemactionplugin Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
icon Added new indicator icons for dark and clear backgrounds 2019-06-08 13:07:01 +02:00
indicator Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
interfaces Remove more 2019-06-12 23:28:56 +02:00
kcm Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
kcmplugin Remove non-toplevel project() definitions 2019-06-12 22:47:17 +02:00
kio Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
nautilus-extension Replace http GNU urls with https 2019-03-23 17:29:26 +01:00
plasmoid More https 2019-03-23 17:38:09 +01:00
plugins Remove trailing whitespace 2019-06-12 22:17:16 +02:00
runners Reduce interfaces include dirs 2019-06-12 23:21:03 +02:00
sfos SVN_SILENT made messages (.desktop file) - always resolve ours 2019-05-08 05:42:59 +02:00
smsapp Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
tests Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
urlhandler Force usage of QStringLiteral and port remaining offenders 2019-06-10 14:40:28 +00:00
.arcconfig Add arcconfig file, for phabricator integration 2017-05-25 00:28:11 +02:00
.arclint Add .arclint 2018-07-27 13:32:03 +02:00
.editorconfig add trim_trailing_whitespace to editorconf 2019-06-11 01:08:31 +02:00
.gitignore Add eclipse settings files to .gitignore 2019-06-04 12:03:00 -06:00
.gitlab-ci.yml ci: Add Gitlab CI configuration 2019-01-24 11:36:29 +05:30
CMakeLists.txt Only find PackageConfig on SFOS 2019-06-12 23:32:07 +02:00
CONTRIBUTING.md Improve CONTRIBUTING.md 2018-05-16 22:31:16 +02:00
COPYING
kdeconnect-version.h.in Full version string 2018-05-30 21:01:12 +02:00
KDEConnectMacros.cmake Use the macro in ECM to install kdeconnect plugins 2016-06-01 05:16:40 +02:00
org.kde.kdeconnect.appdata.xml GIT_SILENT made messages (after extraction) 2019-06-12 02:56:07 +02:00
org.kde.kdeconnect.desktop SVN_SILENT made messages (.desktop file) - always resolve ours 2019-05-24 05:14:08 +02:00
README.md Updated README.md 2018-11-28 14:38:20 +01:00

KDE Connect - desktop app

KDE Connect is a multi-platform app that allows your devices to communicate (eg: your phone and your computer).

(Some) Features

  • Shared clipboard: copy and paste between your phone and your computer (or any other device).
  • Notification sync: Read and reply to your Android notifications from the desktop.
  • Share files and URLs instantly from one device to another including some filesystem integration.
  • Multimedia remote control: Use your phone as a remote for Linux media players.
  • Virtual touchpad: Use your phone screen as your computer's touchpad and keyboard.
  • Presentation remote: Advance your presentation slides straight from your phone.

All this is done completely wirelessly, utilising TLS encryption.

Supported platforms

  • Computers running Linux with Plasma 5, Gnome 3, Elementary OS... any distro with Qt5 support given a little work :)
  • Android, by installing the KDE Connect app from the Play Store or F-Droid.

How to install

These instructions explain how to install KDE Connect on your computer. You will also need to install it on your Andriod device and pair them together in the app before using this application. The Android app repository can be found here

On Linux

Look in your distribution repo for a package called kdeconnect-kde, kdeconnect-plasma, or just kdeconnect. If it's not there and you know how to build software from sources, you just found the repo :), instructions are here

On Mac or Windows

Platforms other than Linux are not officially supported, as there has yet to be an official release of KDE Connect for MacOS or Windows. However, most of the features have already been ported to windows so you can compile KDE Connect for Windows using Craft. It hasn't yet been completely tested on MacOS, contributions and feedback are welcome!

On BSD

It should work, but no promises :)

How does it work?

KDE Connect consists of an UI-agnostic "core" library which exposes a series of DBus interfaces, and several UI components that consume these DBus interfaces. This way, new UI components can be added to integrate better with specific platforms or desktops, without having to reimplement the protocol or any of the internals. The core KDE Connect library is also divided in 4 big blocks:

  • LinkProviders: Are in charge of discovering other KDE Connect-enabled devices in the network and establishing a Link to them.
  • Devices: Represent a remote device, abstracting the specific Link that is being used to reach it.
  • NetworkPackets: JSON-serializable and self-contained pieces of information to be sent by the plugins between devices.
  • Plugins: Independent pieces of code which implement a specific feature. Plugins will use NetworkPackets to exchange information through the network with other Plugins on a remote Device.

The basic structure of a NetworkPacket is the following:

{
  "id": 123456789,
  "type": "com.example.myplugin",
  "body": {  },
  "version": 5
}

The content of the "body" section is defined by each Plugin. Hence, only the emisor and receiver plugins of a given packet type need agree on the contents of the body.

NetworkPackets can also have binary data attached that can't be serialized to JSON. In this case, two new fields will be added:

"payloadSize": The size of the file, or -1 if it is a stream without known size.
"payloadTransferInfo": Another JSON object where the specific Link can add information so the Link in the remote end can establish a connection and receive the payload (eg: IP and port in a local network). It's up to the Link implementation to decide how to use this field.

Contributing

To contribute patches, use KDE Connect's Phabricator. There you can also find a task list with stuff to do, and links to other relevant resources. It is a good idea to also subscribe to the KDE Connect mailing list. We can also be reached on IRC at #kdeconnect on freenode or on telegram, contributions and feedback are warmly welcomed.

License

GNU GPL v2 and GNU GPL v3

If you are reading this from Github, you should know that this is just a mirror of the KDE Project repo.