From 8f6c364229729f41b3443bb3e6956dbbb357ecec Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 16 Feb 2018 13:22:52 +0000 Subject: [PATCH] Show bdsmail address as a QR code --- src/freedombone-controlpanel-user | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/freedombone-controlpanel-user b/src/freedombone-controlpanel-user index 4e7879e4..ecdf1044 100755 --- a/src/freedombone-controlpanel-user +++ b/src/freedombone-controlpanel-user @@ -894,6 +894,12 @@ function show_your_email_address { dialog --title $"Show your Email Address" \ --backtitle $"Freedombone User Control Panel" \ --msgbox $"\nYou can press SHIFT and then drag the mouse and right click to copy.\n\nEmail Address: $MY_EMAIL_ADDRESS\n\nKey ID: $GPG_ID\n\nFingerprint: $GPG_FINGERPRINT\n\nCreated: $GPG_DATE\n\nI2P Address: ${bdsmail_address}" 17 90 + clear + echo '' + echo $'Your bdsmail address as a QR code' + echo '' + echo -n "${bdsmail_address}" | qrencode -t UTF8 + any_key fi }