dotfiles/.local/bin/scripts/kdeconnect-share

9 lines
352 B
Text
Raw Normal View History

2021-07-15 10:36:53 +02:00
#!/bin/sh
2021-11-23 13:03:43 +01:00
kdeconnect-cli --refresh
2021-07-15 10:36:53 +02:00
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)"
2021-12-20 18:34:03 +01:00
test -z "$device" && kdeconnect-cli --list-devices && echo "No device available!" && exit 1
2021-07-15 10:36:53 +02:00
shift
kdeconnect-cli "--share=$file" -d "$device" "$@"