LA 0.44 0.57 0.59 │───────┬───────────────────────────────────────────────────────────────────────────────────────────────────────────────UP 06:55:41 │ │ File: main.rs │───────┼───────────────────────────────────────────────────────────────────────────────────────────────────────────────CPU │ 1 │ use std::fs; ■■■■■■■■■■■■■■■■■■■■■■■■■■ 4%│ 2 │ use std::io; Memory │ 3 │ use std::path::PathBuf; ■■■■■■■■■■■■■■■■■■■■■■■■■■ 29%│ 4 │ │ 5 │ use anyhow::Result; │ 6 │ use nix::sys::stat::Mode; /home/csm/Code/scd/src │ 7 │ use nix::unistd::mkfifo; app.rs │ 8 │ use structopt::StructOpt; draw.rs │ 9 │ use termion::event::Key; event.rs │ 10 │ use termion::raw::IntoRawMode; handlers.rs │ 11 │ use tui::backend::TermionBackend; icons.rs │ 12 │ use tui::Terminal; main.rs │ 13 │ shell.rs │ 14 │ use app::*; │ 15 │ use draw::*; │ 16 │ use event::*; │ 17 │ use handlers::*; │ 18 │ │ 19 │ mod app; │ 20 │ mod draw; │ 21 │ mod event; │ 22 │ mod handlers; │ 23 │ mod icons; │ 24 │ mod shell; │ 25 │ │ 26 │ /// A tiny file manager focused on shell integration │ 27 │ #[derive(Debug, StructOpt)] │ 28 │ struct Opt { │ 29 │ #[structopt(subcommand)] │ 30 │ command: Option<Command>, │ 31 │ } │ 32 │ -rw-r--r-- 2.8K 6/7│: