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

8 lines
260 B
Bash
Executable File

#!/bin/sh
kdeconnect-cli --refresh
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" "$@"