summaryrefslogtreecommitdiffstats
path: root/src/widgets.rs
blob: 8710d29e07cfe733e653a5c3af1266513b86f9a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pub mod process_table;
pub use process_table::*;

pub mod temperature_table;
pub use temperature_table::*;

pub mod disk_table;
pub use disk_table::*;

pub mod cpu_graph;
pub use cpu_graph::*;

pub mod net_graph;
pub use net_graph::*;

pub mod mem_graph;
pub use mem_graph::*;

pub mod battery_widget;
pub use battery_widget::*;