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

8 lines
260 B
Plaintext
Raw Normal View History

2021-07-15 08:36:53 +00:00
#!/bin/sh
2021-11-23 12:03:43 +00:00
kdeconnect-cli --refresh
2021-07-15 08:36:53 +00: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)"
shift
kdeconnect-cli "--share=$file" -d "$device" "$@"