diff options
Diffstat (limited to 'plugins/kdeconnect')
| -rwxr-xr-x | plugins/kdeconnect | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/kdeconnect b/plugins/kdeconnect index 0fbafbb..a209f55 100755 --- a/plugins/kdeconnect +++ b/plugins/kdeconnect @@ -5,11 +5,13 @@ # Shell: POSIX compliant # Author: juacq97 +SELECTION=~/.config/nnn/.selection + id=$(kdeconnect-cli -a --id-only | awk '{print $1}') -if [ "$(find ~/.nnncp)" ]; then - kdeconnect-cli -d "$id" --share "$(cat ~/.nnncp)" +if [ "$(find "$SELECTION")" ]; then + kdeconnect-cli -d "$id" --share "$(cat "$SELECTION")" # If you want a system notification, uncomment the next 3 lines. -# notify-send -a "Kdeconnect" "Sending $(cat ~/.nnncp)" +# notify-send -a "Kdeconnect" "Sending $(cat "$SELECTION")" #else # notify-send -a "Kdeconnect" "No file selected" fi |