Skip to content

pythops/impala

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

42 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

TUI for managing wifi

๐Ÿ“ธ Demo

๐Ÿ’ก Prerequisites

A Linux based OS with iwd installed.

Note

You might need to install nerdfonts for the icons to be displayed correctly.

๐Ÿš€ Installation

๐Ÿ“ฅ Binary release

You can download the pre-built binaries from the release page release page

๐Ÿ“ฆ crates.io

You can install impala from crates.io

cargo install impala

๐ŸงAUR

You can install impala from the AUR with using an AUR helper.

paru -S impala

Nixpkgs

nix-env -iA nixpkgs.impala

โš’๏ธ Build from source

Run the following command:

git clone https://github.com/pythops/impala
cd impala
cargo build --release

This will produce an executable file at target/release/impala that you can copy to a directory in your $PATH.

๐Ÿช„ Usage

Global

Tab or Shift + Tab: Switch between different sections.

j or Down : Scroll down.

k or Up: Scroll up.

ctrl+r: Switch adapter mode.

?: Show help.

esc: Dismiss the different pop-ups.

q or ctrl+c: Quit the app.

Device

i: Show device information.

o: Toggle device power.

Station

s: Start scanning.

Space: Connect/Disconnect the network.

Known Networks

a: Enable/Disable auto-connect.

d: Remove the network from the known networks list.

Access Point

n: Start a new access point.

x: Stop the running access point.

Custom keybindings

Keybindings can be customized in the config file $HOME/.config/impala/config.toml

switch = "r"
mode = "station"

[device]
infos = "i"
toggle_power = "o"

[access_point]
start = 'n'
stop = 'x'

[station]
toggle_scanning = "s"
toggle_connect = " "

[station.known_network]
toggle_autoconnect = "a"
remove = "d"

โš–๏ธ License

GPLv3