summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index dcd28e6..dfbbc25 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -26,6 +26,7 @@ use nostr_sdk::{
use nostr_signer::{Nip46Signer, NostrSigner};
#[cfg(any(target_os = "linux", target_os = "android"))]
use procfs::net::TcpState;
+use qrcode::{render::unicode, QrCode};
use serde::{Deserialize, Serialize};
use serde_json::{from_reader, to_string};
#[cfg(unix)]
@@ -94,6 +95,13 @@ impl ClientData {
println!(
"Use your NIP46 signer app (e.g. Amber) to connect by using this URI:\n{uri}"
);
+ let code = QrCode::new(uri.clone()).unwrap();
+ let image = code
+ .render::<unicode::Dense1x2>()
+ .dark_color(unicode::Dense1x2::Light)
+ .light_color(unicode::Dense1x2::Dark)
+ .build();
+ println!("{}", image);
uri
}
};