add QR code info

This commit is contained in:
Malin Freeborn 2023-09-01 23:39:42 +02:00
parent 0da2b4c7e8
commit 554eb989d5
Signed by: andonome
GPG Key ID: 52295D2377F4D70F
2 changed files with 28 additions and 17 deletions

28
vision/QR_Codes.md Normal file
View File

@ -0,0 +1,28 @@
---
title: "QR Codes"
tags: [ "Documentation", "qrencode", "zbar" ]
---
Make a QR Code image:
```bash
qrencode 'https://play.google.com/store/apps/details?id=org.briarproject.briar.android' -o "$FILE".png
```
Make a QR Coded message in the terminal:
```bash
qrencode -t ansi "Hello World"
```
Read a QR Code image:
```bash
zbarimg $FILE
```
Show wifi QR code (only with Network Manager):
```bash
nmcli device wifi show-password
```

View File

@ -1,17 +0,0 @@
---
title: "qrencode"
tags: [ "Documentation", "vision" ]
---
Make a QR Code image:
```bash
qrencode 'https://play.google.com/store/apps/details?id=org.briarproject.briar.android' -o qr_briar.png
```
Make a QR Coded message in the terminal:
```bash
qrencode -t ansi "Hello World"
```