desktop-tui 0.3.2

A desktop environment without graphics (tmux-like)
1
2
3
4
5
6
7
8
use clap::Parser;
use std::path::PathBuf;

#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
pub struct Args {
    pub shortcut_dir: Option<PathBuf>
}