impala 0.7.1

TUI for managing wifi
Documentation
use anyhow::Result;
use std::fs;

pub fn check() -> Result<()> {
    let entries = fs::read_dir("/sys/class/rfkill/")?;

    for entry in entries {
        let entry = entry?;
        let entry_path = entry.path();

        if let Some(_file_name) = entry_path.file_name() {
            let name = fs::read_to_string(entry_path.join("type"))?;

            if name.trim() == "wlan" {
                let state_path = entry_path.join("state");
                let state = fs::read_to_string(state_path)?.trim().parse::<u8>()?;

                // https://www.kernel.org/doc/Documentation/ABI/stable/sysfs-class-rfkill
                match state {
                    0 => {
                        eprintln!(
                            r"
The wifi device is soft blocked
Run the following command to unblock it
$ sudo rfkill unblock wlan
                    "
                        );
                        std::process::exit(1);
                    }
                    2 => {
                        eprintln!("The wifi device is hard blocked");
                        std::process::exit(1);
                    }
                    _ => {}
                }
                break;
            }
        }
    }
    Ok(())
}