summaryrefslogtreecommitdiffstats
path: root/src/app/widgets.rs
blob: 2a00fa384fbcf72b5248f64592c38896e4ed5157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// FIXME: Move this outside of app, along with components?

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::*;