quickterm 0.1.0

A small drop-down terminal for Sway/i3 IPC
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Parser;

#[derive(Debug, Parser)]
#[command(name = "quickterm")]
#[command(version)]
#[command(about = "A small drop-down terminal for sway/i3-compatible IPC")]
pub struct Args {
    #[arg(short = 'i', long = "in-place")]
    pub in_place: bool,

    #[arg(value_name = "SHELL")]
    pub shell: Option<String>,
}