bin: add kdeconnect-share shortcut

This commit is contained in:
xeruf 2021-07-15 10:36:53 +02:00
parent 642e0d8ebd
commit f3392d61dd
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/bin/sh
if ! test -f "$1"; then echo "Please specify a file to share" && exit 1; fi
file="$1"
device="$(kdeconnect-cli --list-available 2>/dev/null | fzf -0 -1 | cut -d' ' -f3)"
shift
kdeconnect-cli "--share=$file" -d "$device" "$@"