make all file names lowercase

This commit is contained in:
2025-08-14 06:35:44 +02:00
parent 33a959fcea
commit a55712032b
13 changed files with 0 additions and 0 deletions

28
vision/qr_codes.md Normal file
View File

@@ -0,0 +1,28 @@
---
title: "QR Codes"
tags: [ "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
```