1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-02-18 23:34:37 +00:00
nnn/plugins/kdeconnect

25 lines
729 B
Text
Raw Normal View History

#!/usr/bin/env sh
2021-05-15 23:02:01 +05:30
# Description: Send the selected files to your Android device using kdeconnect-cli.
# kdeconnect must be configured on the Android device and the PC.
#
# Shell: POSIX compliant
# Author: juacq97
2020-04-24 10:12:24 +05:30
selection=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
2019-04-21 23:59:51 +05:30
id=$(kdeconnect-cli -a --id-only | awk '{print $1}')
if [ -s "$selection" ]; then
2020-04-24 10:12:24 +05:30
kdeconnect-cli -d "$id" --share "$(cat "$selection")"
2020-12-12 20:53:00 +05:30
# If you want a system notification, uncomment the next 3 lines.
#notify-send -a "Kdeconnect" "Sending $(cat "$selection")"
#else
2020-12-12 20:53:00 +05:30
#notify-send -a "Kdeconnect" "No file selected"
# Clear selection
if [ -p "$NNN_PIPE" ]; then
printf "-" > "$NNN_PIPE"
fi
fi