aboutsummaryrefslogtreecommitdiffstats
path: root/user-scripts
diff options
context:
space:
mode:
authorGravatar Mischievous Meerkat <engineerarun@gmail.com>2019-03-17 18:41:41 +0530
committerGravatar GitHub <noreply@github.com>2019-03-17 18:41:41 +0530
commit3ce1b7dd973109f24d82d89b8682b6f3c6c47291 (patch)
tree5332c03609d5cf9f0692023820c20b8fec239f12 /user-scripts
parente1bd7c68524e8fac8279863d8b5f3b249f22942d (diff)
parentcfd0769089dd8903f2b60a0e332eb9fbbcbb024e (diff)
downloadnnn-3ce1b7dd973109f24d82d89b8682b6f3c6c47291.tar.gz
Merge pull request #226 from juacq97/add-kdeconnect
Added a user-script to send selected files using kde-connect.
Diffstat (limited to 'user-scripts')
-rwxr-xr-xuser-scripts/kdeconnect16
1 files changed, 16 insertions, 0 deletions
diff --git a/user-scripts/kdeconnect b/user-scripts/kdeconnect
new file mode 100755
index 0000000..d34d269
--- /dev/null
+++ b/user-scripts/kdeconnect
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# Description: Send the selected files to your Android device using kdeconnect-cli. You must have installed and configured kdeconnect both on the Android device and on the PC.
+#
+# Shell: Bash
+# Author: juacq97
+
+id=$(kdeconnect-cli -a --id-only | awk '{print $1}')
+if [ $(find ~/.nnncp) ]
+then
+ kdeconnect-cli -d $id --share $(cat ~/.nnncp)
+# If you want a system notification, uncomment the next 3 lines.
+# notify-send -a "Kdeconnect" "Sending $(cat ~/.nnncp)"
+#else
+# notify-send -a "Kdeconnect" "No file selected"
+fi