diff options
| author | 2019-03-25 12:51:37 +0530 | |
|---|---|---|
| committer | 2019-03-25 12:51:37 +0530 | |
| commit | 09b713aa25bce1c52a88543813d9ca88d237430f (patch) | |
| tree | b2ad707e28fbafdb09ab820bd9639eae03d85985 /user-scripts | |
| parent | 28ef959e7119e0ff8eed426f636f19744825e4dd (diff) | |
| parent | 3b4be9fad356b7ae767df6d016ebdf7bbf744f3d (diff) | |
| download | nnn-09b713aa25bce1c52a88543813d9ca88d237430f.tar.gz | |
Merge pull request #236 from juacq97/add-kdeconnect
Make kdeconnec script POSIX compliant
Diffstat (limited to 'user-scripts')
| -rwxr-xr-x | user-scripts/kdeconnect | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/user-scripts/kdeconnect b/user-scripts/kdeconnect index db28e7a..0fbafbb 100755 --- a/user-scripts/kdeconnect +++ b/user-scripts/kdeconnect @@ -1,14 +1,13 @@ -#!/usr/bin/env bash +#!/usr/bin/env 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 +# Shell: POSIX compliant # Author: juacq97 id=$(kdeconnect-cli -a --id-only | awk '{print $1}') -if [ $(find ~/.nnncp) ] -then - kdeconnect-cli -d $id --share $(cat ~/.nnncp) +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 |