Browse Source

Show bdsmail address as a QR code

Bob Mottram 7 years ago
parent
commit
8f6c364229
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      src/freedombone-controlpanel-user

+ 6
- 0
src/freedombone-controlpanel-user View File

894
         dialog --title $"Show your Email Address" \
894
         dialog --title $"Show your Email Address" \
895
                --backtitle $"Freedombone User Control Panel" \
895
                --backtitle $"Freedombone User Control Panel" \
896
                --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
896
                --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
897
+        clear
898
+        echo ''
899
+        echo $'Your bdsmail address as a QR code'
900
+        echo ''
901
+        echo -n "${bdsmail_address}" | qrencode -t UTF8
902
+        any_key
897
     fi
903
     fi
898
 }
904
 }
899
 
905