https://github.com/ublue-os/beyond
GitHub
What a GNOME OS could look like in the future—today - GitHub - ublue-os/beyond: What a GNOME OS could look like in the future—today
dnf info part in there? That way we can keep track of the reasons we're adding packages so in the future we understand why we put something in there.
dnf infouse clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about)]
struct Cli {
#[arg(long)]
config: bool
}
fn main() {
let args = Cli::parse();
if args.config == true {
todo!("Need to implement CLI/TUI setup.");
}
println!("{:?}", args);
}