diff --git a/vision/QR_Codes.md b/vision/QR_Codes.md new file mode 100644 index 0000000..eb701b0 --- /dev/null +++ b/vision/QR_Codes.md @@ -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 +``` diff --git a/vision/qrencode.md b/vision/qrencode.md deleted file mode 100644 index bd5b2f1..0000000 --- a/vision/qrencode.md +++ /dev/null @@ -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" -``` -