istat 0.1.2

A lightweight and batteries-included status_command for i3 and sway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

use clap::Parser;

#[derive(Debug, Parser)]
pub struct Cli {
    /// Path to an alternate configuration file.
    #[clap(long)]
    pub config: Option<PathBuf>,
    /// Path to the socket to use for ipc. Takes precedence over the same option in the config file.
    #[clap(long)]
    pub socket: Option<PathBuf>,
}