{"id":51029891,"url":"https://github.com/lewispb/wifiui","last_synced_at":"2026-06-21T23:30:24.850Z","repository":{"id":355845420,"uuid":"1226042090","full_name":"lewispb/wifiui","owner":"lewispb","description":"A small, opinionated Wi-Fi GUI for Linux on iwd, with 1Password integration","archived":false,"fork":false,"pushed_at":"2026-05-05T13:23:06.000Z","size":879,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-05T15:31:13.065Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lewispb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-30T23:08:11.000Z","updated_at":"2026-05-05T13:25:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lewispb/wifiui","commit_stats":null,"previous_names":["lewispb/wifiui"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lewispb/wifiui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lewispb%2Fwifiui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lewispb%2Fwifiui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lewispb%2Fwifiui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lewispb%2Fwifiui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lewispb","download_url":"https://codeload.github.com/lewispb/wifiui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lewispb%2Fwifiui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34629658,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-21T02:00:05.568Z","response_time":54,"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":[],"created_at":"2026-06-21T23:30:24.170Z","updated_at":"2026-06-21T23:30:24.844Z","avatar_url":"https://github.com/lewispb.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wifiui\n\nA small, opinionated Wi-Fi GUI for Linux, built on top of [iwd](https://iwd.wiki.kernel.org/) and [Gio](https://gioui.org/).\n\nDesigned to feel native on tiling window managers (Hyprland, Sway) — keyboard-first, monospace, themeable.\n\n|  Networks                                              |  Diagnostics                                       |\n| :----------------------------------------------------: | :------------------------------------------------: |\n| ![networks tab](docs/screenshots/networks.png)         | ![tools tab](docs/screenshots/tools.png)           |\n\n## Features\n\n- Browse, scan, and connect to nearby networks via iwd's D-Bus API.\n- **1Password integration** — auto-fills saved passphrases and offers to save new ones to your vault (via the `op` CLI).\n- **Pinned networks** — keep your usual Wi-Fis at the top of the list.\n- **Live connection panel** — IPv4/IPv6, gateway, DNS, DHCP lease expiry, link rate, Wi-Fi generation (4/5/6/7).\n- **Captive-portal detection** with one-click \"open in browser\".\n- **Diagnostics tab** — ping, dns lookup, tracepath, `ip route`, `resolvectl status`, `iw link`.\n- **Omarchy theming** — picks up the active [Omarchy](https://omarchy.org/) palette and hot-reloads on change.\n- **`wifictl`** — a small companion CLI for headless / SSH workflows.\n\n## Requirements\n\n- Linux with [iwd](https://iwd.wiki.kernel.org/) running as the Wi-Fi backend (replaces wpa_supplicant)\n- Vulkan headers (build-time only; Gio uses Vulkan on Linux)\n- A [Nerd Font](https://www.nerdfonts.com/) for the glyphs (Caskaydia/JetBrains Mono recommended)\n- Optional: [`op`](https://1password.com/downloads/command-line/) (1Password CLI) for passphrase autofill/save\n- Optional: `xdg-utils` for the captive-portal \"open in browser\" button\n\n## Install\n\nOne-liner — downloads the latest release and installs to `~/.local/bin`:\n\n```sh\ncurl -fsSL https://raw.githubusercontent.com/lewispb/wifiui/main/script/install | bash\n```\n\nPin a version with `WIFIUI_VERSION=v1.2.3`. The installer verifies SHA256 against the release's `SHA256SUMS` and warns if `iwd` or `libvulkan.so.1` are missing.\n\nOn Omarchy systems, the installer also adds a `custom/wifiui` waybar module with a launcher icon. Skip with `WIFIUI_SKIP_WAYBAR=1`.\n\nUninstall: `rm ~/.local/bin/wifiui ~/.local/bin/wifiui-launch ~/.local/share/applications/wifiui.desktop`.\n\n## Build from source\n\n```sh\nmake setup    # installs vulkan headers via pacman or apt\nmake build    # produces bin/wifiui and bin/wifictl\nmake install  # installs to ~/.local/bin and adds a .desktop entry\n```\n\nOr with Go directly:\n\n```sh\ngo build -o bin/ ./cmd/...\n```\n\n## Running\n\n```sh\nwifiui                  # launch the GUI\nwifictl scan            # scan and list networks\nwifictl connect \u003cssid\u003e  # connect (prompts for passphrase on a tty)\nwifictl status\nwifictl disconnect\n```\n\n## Configuration\n\n| Env var              | Effect                                                      |\n|----------------------|-------------------------------------------------------------|\n| `WIFIUI_OP_ACCOUNT`  | `op --account` shorthand for 1Password (omit to use default) |\n\nPinned-network state is stored at `~/.config/wifiui/pins.json`.\n\n## Architecture\n\n```\ncmd/wifiui          Gio application entry point\ncmd/wifictl         CLI companion\n\ninternal/iwd        iwd D-Bus client (Client / Station / Network) + agent\ninternal/netinfo    netlink + /sys + resolvectl + iw snapshot of active interfaces\ninternal/portal     captive-portal probe (detectportal.firefox.com)\ninternal/onepw      `op` CLI wrapper\ninternal/pins       JSON-backed pinned-SSID store\ninternal/theme      Omarchy palette loader + Material theme bundle\ninternal/wifi       shared band-classification helper\ninternal/ui         Gio UI (App, model, passphrase prompt, tools panel, networks tab)\n```\n\nThe UI uses an immutable `viewState` published via `atomic.Pointer`: workers build a fresh state and `Store` it, layout reads with `Load` and treats it as read-only — no per-frame allocations on the read path.\n\n## Status\n\nPersonal project. Works on my machine (Arch + Hyprland). Should work on any iwd-based Linux. PRs welcome.\n\n## Licence\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flewispb%2Fwifiui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flewispb%2Fwifiui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flewispb%2Fwifiui/lists"}