{"id":20985141,"url":"https://github.com/dlenski/wifi2qr","last_synced_at":"2026-02-26T08:03:37.325Z","repository":{"id":84077221,"uuid":"130800699","full_name":"dlenski/wifi2qr","owner":"dlenski","description":"A simple script to share your computer's WiFi connection via QR code","archived":false,"fork":false,"pushed_at":"2025-12-04T21:58:03.000Z","size":55,"stargazers_count":7,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-08T05:59:14.916Z","etag":null,"topics":["bash","networkmanager","nmcli","qrcode","wifi"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dlenski.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-04-24T05:28:09.000Z","updated_at":"2023-11-25T17:15:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"e44f5926-ee9f-49a3-99b1-928678be439f","html_url":"https://github.com/dlenski/wifi2qr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dlenski/wifi2qr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlenski%2Fwifi2qr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlenski%2Fwifi2qr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlenski%2Fwifi2qr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlenski%2Fwifi2qr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dlenski","download_url":"https://codeload.github.com/dlenski/wifi2qr/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dlenski%2Fwifi2qr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29853024,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","networkmanager","nmcli","qrcode","wifi"],"created_at":"2024-11-19T05:55:32.269Z","updated_at":"2026-02-26T08:03:37.276Z","avatar_url":"https://github.com/dlenski.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wifi2qr\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n\nA simple `bash` script to share your computer's WiFi connection settings\n[via QR code](https://github.com/zxing/zxing/wiki/Barcode-Contents#wifi-network-config-android).\n\nRequires the command-line utility\n[`nmcli` from NetworkManager](https://developer.gnome.org/NetworkManager/stable/nmcli.html)—plus\n[`qrencode`](https://fukuchi.org/works/qrencode/) and\n[ImageMagick's `display`](https://www.imagemagick.org/script/display.php) in order to actually\ndisplay the barcode.\n\n## Installation and usage\n\n```sh\n$ curl https://raw.githubusercontent.com/dlenski/wifi2qr/HEAD/wifi2qr \u003e ~/bin/wifi2qr\n$ chmod +x !$\n$ wifi2qr\n```\n\n… which will display a barcode that you can read with your smartphone to connect to the\nnetwork. Tested with Android's `zxing`-based\n[Barcode Scanner](https://play.google.com/store/apps/details?id=com.google.zxing.client.android),\nthe somewhat more modern\n[QR \u0026 Barcode Scanner](https://f-droid.org/en/packages/com.example.barcodescanner),\nand the iPhone Camera app.\n\n![WIFI:S:ExampleWPA;T:WPA;P:ExamplePassword;;](example.png)\n\nYou can also share a specific connection, by its NetworkManager\nconnection name or UUID with `wifi2qr CONNECTION`.\n\nYou can list known WiFi connections with `wifi2qr -l`.\n\nNote: **only** `zxing`-based apps appear to support [the E/A/I/PH2\nfields which are needed to configure WPA-EAP (\"Enterprise\") WiFi\nnetworks](https://github.com/zxing/zxing/wiki/Barcode-Contents#wi-fi-network-config-android-ios-11);\nthose fields are _not_ present in the official-ish\n[WPA3 specification](https://www.wi-fi.org/system/files/WPA3%20Specification%20v3.1.pdf)\nfor WiFi URIs.\n\n### Complete options\n\n```\nwifi2qr [-h] [-l] [-u | -a] [connection]\n\nDisplays a QR code that can be scanned to connect to a WiFi network\nknown to NetworkManager.\n\nOptions:\n  connection    Show QR code for specific connection (if not\n                specified, currently-enabled WiFi connection)\n  -h            Show this help message\n  -l            List WiFi connections known to NetworkManager\n  -a | -i       Show QR code using ANSI characters or with ImageMagick\n     | -o FILE  or save to a file (e.g. qrcode.png)\n                (default is to show using UTF8 characters)\n  -q            Quiet mode (default is to print barcode in text\n                form to stderr as well; this suppresses it)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlenski%2Fwifi2qr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdlenski%2Fwifi2qr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlenski%2Fwifi2qr/lists"}