KDE Connect: Difference between revisions
AveryanAlex (talk | contribs) m Minor update |
m grammar |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[https://apps.kde.org/de/kdeconnect/ KDE Connect] is an application with various functions for integrating a phone and the Linux computer. It allows you to send files to the other device, control its media playback, send remote control inputs, display its notifications and much more | [https://apps.kde.org/de/kdeconnect/ KDE Connect] is an application for the [[KDE Plasma]] desktop environment with various functions for integrating a phone and the Linux computer. It allows you to send files to the other device, control its media playback, send remote control inputs, display its notifications and much more. | ||
=== | [https://apps.kde.org/de/kdeconnect/ KDE Connect] is also available for the [[GNOME]] desktop environment using the [https://extensions.gnome.org/extension/1319/gsconnect/ GSConnect] extension. | ||
==== | |||
== Installation == | |||
=== [[KDE Plasma]] === | |||
==== [[NixOS]] ==== | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
programs.kdeconnect.enable = true; | programs.kdeconnect.enable = true; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==== | ==== [[Home Manager]] ==== | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
home-manager.users.username.services.kdeconnect.enable = true; | home-manager.users.username.services.kdeconnect.enable = true; | ||
Line 17: | Line 22: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== | === [[GNOME]] (with [https://extensions.gnome.org/extension/1319/gsconnect/ GSConnect]) === | ||
==== [[NixOS]] ==== | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
programs.kdeconnect = { | programs.kdeconnect = { | ||
Line 24: | Line 31: | ||
}; | }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Then it is necessary to enable "GSConnect" extension in the Gnome | Then it is necessary to enable "[https://extensions.gnome.org/extension/1319/gsconnect/ GSConnect]" extension in the Gnome Extensions application (or via dconf). | ||
==== | ==== [[Home Manager]] ==== | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
home-manager.users.username.programs.gnome-shell = { | home-manager.users.username.programs.gnome-shell = { |