{"id":22894661,"url":"https://github.com/valentin271/wtui","last_synced_at":"2026-02-16T20:19:37.362Z","repository":{"id":248412189,"uuid":"828591198","full_name":"Valentin271/wtui","owner":"Valentin271","description":"A WireGuard client TUI","archived":false,"fork":false,"pushed_at":"2025-11-26T19:32:25.000Z","size":57,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-29T15:53:38.909Z","etag":null,"topics":["ratatui","rust","tui","vpn","wireguard"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/Valentin271.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-14T15:54:38.000Z","updated_at":"2025-11-26T19:32:28.000Z","dependencies_parsed_at":"2024-11-12T21:29:56.727Z","dependency_job_id":"cd913d7e-a2ed-441f-82a3-fa58d45d5366","html_url":"https://github.com/Valentin271/wtui","commit_stats":null,"previous_names":["valentin271/wtui"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Valentin271/wtui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valentin271%2Fwtui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valentin271%2Fwtui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valentin271%2Fwtui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valentin271%2Fwtui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Valentin271","download_url":"https://codeload.github.com/Valentin271/wtui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valentin271%2Fwtui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29450850,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ratatui","rust","tui","vpn","wireguard"],"created_at":"2024-12-13T23:19:00.975Z","updated_at":"2026-02-14T17:21:26.151Z","avatar_url":"https://github.com/Valentin271.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wtui\n\nA [WireGuard](https://www.wireguard.com/) client interface.\n\n## Features\n\n- List Interfaces/Connections\n- See connection status (connected/disconnected, bytes received/sent)\n- Actions to connect \u0026 disconnect\n- List most of configuration (address, MTU, endpoint, allowed IPs, DNS)\n- Copy public key\n- Search for connection\n\n## TODO\n\n- [ ] Available action help popup\n\n# Usage\n\nTo use, simply run `wtui`.  \nYou'll very likely need root permission to (1) read WireGuard configuration files and (2) alter\nnetwork interfaces and routes.\n\nSee [Installation](#Installation) for simplified root usage.\n\n## Keymap\n\n| Key         | Action          |\n| ----------- | --------------- |\n| `j`, `Down` | Down            |\n| `k`, `Up`   | Up              |\n| `c`         | Connect         |\n| `d`         | Disconnect      |\n| `D`         | Disconnect all  |\n| `y`         | Yank public key |\n| `/`         | Search          |\n| `?`\\*       | Help            |\n\n\\*: Soon, see TODO section\n\n# Installation\n\n1. Download from the [Releases](https://github.com/Valentin271/wtui/releases) page or build from source\n2. Make binary executable `chmod +x wtui`\n3. Move binary to PATH, e.g. `sudo mv wtui /usr/local/bin`\n4. (optional) If `wtui` command is not available, add it to your `PATH`: `echo 'export PATH=\"$PATH:/usr/local/bin\"' \u003e\u003e ~/.bashrc`\n\nAt this point, you can already use `wtui`, but you may want to enable root usage without password.\n\nUse `visudo` to create a sudoers file:\n`sudo visudo /etc/sudoers.d/wireguard`\n\nAdd the following lines, and replace `\u003cuser\u003e` by your username.\n```\n\u003cuser\u003e ALL= (root) NOPASSWD: /usr/bin/wg-quick\n\u003cuser\u003e ALL= (root) NOPASSWD: /usr/local/bin/wtui\n```\n\n## Keybind\n\nAfter this setup, I recommend binding `wtui` to a shortcut.\n\nFor example, using i3wm \u0026 alacritty terminal.\n\n```\nbindsym $mod+grave exec alacritty -e sudo wtui\n```\n\n# Limitations/Caveats\n\n- Works only with single peer configurations\n- Unit tests require `wg` to be installed\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalentin271%2Fwtui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvalentin271%2Fwtui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalentin271%2Fwtui/lists"}