desktop-tui 0.3.2

A desktop environment without graphics (tmux-like)
1
2
3
4
5
6
use chrono::Local;

pub fn time_to_string() -> String {
    let now = Local::now();
    now.format("%H:%M ").to_string()
}