linutil_tui 24.9.28

Chris Titus Tech's Linux Toolbox - Linutil is a distro-agnostic toolbox designed to simplify everyday Linux tasks.
1
2
3
4
5
6
7
fn main() {
    // Add current date as a variable to be displayed in the 'Linux Toolbox' text.
    println!(
        "cargo:rustc-env=BUILD_DATE={}",
        chrono::Local::now().format("%Y-%m-%d")
    );
}