Updated Linking other devices (Provisioning) (markdown)

AsamK 2020-11-14 19:02:38 +01:00
parent 386a826a04
commit 49c157a77e

@ -7,6 +7,10 @@
To request a link and display the resulting QR code image in a single command on linux:
signal-cli link -n "optional device name" | xargs -l qrencode -o /tmp/qrcode.png & while [ ! -f /tmp/qrcode.png ]; do sleep 1; done; xdg-open /tmp/qrcode.png
or for newer android devices:
signal-cli link -n "optional device name" | xargs -l qrencode -o /tmp/qrcode.png --level=H -v 10 & while [ ! -f /tmp/qrcode.png ]; do sleep 1; done; xdg-open /tmp/qrcode.png
Do not kill the `signal-cli link …` process until linking is finished; the process will exit when it's done.