A series of bash script wrappers for the CLI client for KDEconnect
$ ./kdecclistkdecclist is a script to list all device IDs on the LAN.
The other scripts such as kdeccpair, kdeccunpair, and kdeccping
all call this script by default for the device field of kdeconnect-cli.
This script runs:
$ kdeconnect-cli --id-only -l$ ./kdeccpairThe kdeccpair script works by calling kdeconnect-cli's default pairing
method, so in effect running $ ./kdeccpair without input runs:
$ kdeconnect -d "$(./kdecclist)" --pairWhile running $ ./kdeccpair with input effectively runs:
$ kdeconnect -d "$1" --pair$ ./kdeccunpairThe kdeccunpair script works by calling kdeconnect-cli's default
unpairing method, so in effect running $ ./kdeccunpair without input runs:
$ kdeconnect -d "$(./kdecclist)" --unpairWhile running $ ./kdeccunpair with input effectively runs:
$ kdeconnect -d "$1" --unpair$ ./kdeccpingThe kdeccping script calls:
$ kdeconnect-cli -d "$(./kdecclist)" --pingIf there is no user input. While if there is input it runs:
$ kdeconnect-cli -d "$(./kdecclist)" --ping-msg "$1"- A script for
--refresh - A script for
--share <path> - A script for
--list-notifications - A script for
--lock - A script for
-a, --list-avilable - Make scripts not use ./ for execution
- Create Makefile for install