{"id":13599104,"url":"https://github.com/pythops/impala","last_synced_at":"2025-05-14T11:09:41.017Z","repository":{"id":243573497,"uuid":"812789137","full_name":"pythops/impala","owner":"pythops","description":"🛜 TUI for managing wifi on Linux","archived":false,"fork":false,"pushed_at":"2025-02-17T21:35:15.000Z","size":258,"stargazers_count":880,"open_issues_count":8,"forks_count":13,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-05-08T18:54:33.104Z","etag":null,"topics":["iwd","linux","ratatui","tui","wifi"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pythops.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"pythops"}},"created_at":"2024-06-09T22:00:04.000Z","updated_at":"2025-05-08T10:23:09.000Z","dependencies_parsed_at":"2024-06-20T09:33:30.964Z","dependency_job_id":"bc7385a4-abb1-4ce9-b7dc-e946c4c06707","html_url":"https://github.com/pythops/impala","commit_stats":{"total_commits":56,"total_committers":3,"mean_commits":"18.666666666666668","dds":0.0714285714285714,"last_synced_commit":"1da4c3f1bd66480aefe197312f121133a7d4f578"},"previous_names":["pythops/impala"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythops%2Fimpala","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythops%2Fimpala/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythops%2Fimpala/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pythops%2Fimpala/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pythops","download_url":"https://codeload.github.com/pythops/impala/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254129489,"owners_count":22019628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["iwd","linux","ratatui","tui","wifi"],"created_at":"2024-08-01T17:00:59.765Z","updated_at":"2025-05-14T11:09:40.954Z","avatar_url":"https://github.com/pythops.png","language":"Rust","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch2\u003e TUI for managing wifi \u003c/h2\u003e\n\u003c/div\u003e\n\n## 📸 Demo\n\n![](https://github.com/pythops/impala/assets/57548585/b96e7af4-cba4-49c7-a36f-12c83839134d)\n\n## 💡 Prerequisites\n\nA Linux based OS with [iwd](https://iwd.wiki.kernel.org/) installed.\n\n\u003e [!NOTE]\n\u003e You might need to install [nerdfonts](https://www.nerdfonts.com/) for the icons to be displayed correctly.\n\n## 🚀 Installation\n\n### 📥 Binary release\n\nYou can download the pre-built binaries from the release page [release page](https://github.com/pythops/impala/releases)\n\n### 📦 crates.io\n\nYou can install `impala` from [crates.io](https://crates.io/crates/impala)\n\n```shell\ncargo install impala\n```\n\n### 🐧Arch Linux\n\nYou can install `impala` from the [official repositories](https://archlinux.org/packages/extra/x86_64/impala/) with using [pacman](https://wiki.archlinux.org/title/pacman).\n\n```bash\npacman -S impala\n```\n\n### Nixpkgs\n\n```shell\nnix-env -iA nixpkgs.impala\n```\n\n### ⚒️ Build from source\n\nRun the following command:\n\n```shell\ngit clone https://github.com/pythops/impala\ncd impala\ncargo build --release\n```\n\nThis will produce an executable file at `target/release/impala` that you can copy to a directory in your `$PATH`.\n\n## 🪄 Usage\n\n### Global\n\n`Tab` or `Shift + Tab`: Switch between different sections.\n\n`j` or `Down` : Scroll down.\n\n`k` or `Up`: Scroll up.\n\n`ctrl+r`: Switch adapter mode.\n\n`?`: Show help.\n\n`esc`: Dismiss the different pop-ups.\n\n`q` or `ctrl+c`: Quit the app.\n\n### Device\n\n`i`: Show device information.\n\n`o`: Toggle device power.\n\n### Station\n\n`s`: Start scanning.\n\n`Space`: Connect/Disconnect the network.\n\n### Known Networks\n\n`a`: Enable/Disable auto-connect.\n\n`d`: Remove the network from the known networks list.\n\n### Access Point\n\n`n`: Start a new access point.\n\n`x`: Stop the running access point.\n\n## Custom keybindings\n\nKeybindings can be customized in the config file `$HOME/.config/impala/config.toml`\n\n```toml\n\nswitch = \"r\"\nmode = \"station\"\n\n[device]\ninfos = \"i\"\ntoggle_power = \"o\"\n\n[access_point]\nstart = 'n'\nstop = 'x'\n\n[station]\ntoggle_scanning = \"s\"\ntoggle_connect = \" \"\n\n[station.known_network]\ntoggle_autoconnect = \"a\"\nremove = \"d\"\n```\n\n## ⚖️ License\n\nGPLv3\n","funding_links":["https://github.com/sponsors/pythops"],"categories":["Table of Contents","Rust","\u003ca name=\"networking\"\u003e\u003c/a\u003eNetworking","💻 Apps"],"sub_categories":["🌐 Networking and Internet"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpythops%2Fimpala","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpythops%2Fimpala","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpythops%2Fimpala/lists"}