From 901b8e5ca57d10a4be65234c492cdae5cc07c962 Mon Sep 17 00:00:00 2001 From: MohindharMukku <127215223+MohindharMukku@users.noreply.github.com> Date: Thu, 27 Apr 2023 11:11:25 +0530 Subject: [PATCH] for newer versions on andriod: section at the end of the code there was < ' >. when i paste the code with < ' >, the code doest not work for me. after removing it the qrcode was generated. --- Linking-other-devices-(Provisioning).md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linking-other-devices-(Provisioning).md b/Linking-other-devices-(Provisioning).md index 881a3d1..538bd59 100644 --- a/Linking-other-devices-(Provisioning).md +++ b/Linking-other-devices-(Provisioning).md @@ -17,7 +17,7 @@ Signal allows to link additional devices to your primary device. A "primary" pro or for newer versions on android: - signal-cli link -n "optional device name" | xargs -L 1 qrencode -o /tmp/qrcode.png --level=H -v 10 & while [ ! -f /tmp/qrcode.png ]; do sleep 1; done; xdg-open /tmp/qrcode.png` + signal-cli link -n "optional device name" | xargs -L 1 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.