diff --git a/src/widgets/disk_graph.rs b/src/widgets/disk_graph.rs new file mode 100644 index 00000000..560a1f9e --- /dev/null +++ b/src/widgets/disk_graph.rs @@ -0,0 +1 @@ +//! Code for a disk graph widget. diff --git a/src/widgets/mod.rs b/src/widgets/mod.rs index 0c908a3c..a9a7bf09 100644 --- a/src/widgets/mod.rs +++ b/src/widgets/mod.rs @@ -1,9 +1,11 @@ pub mod battery_info; pub mod cpu_graph; +pub mod disk_graph; pub mod disk_table; pub mod mem_graph; pub mod network_graph; pub mod process_table; +pub mod temp_graph; pub mod temperature_table; pub use battery_info::*; diff --git a/src/widgets/temp_graph.rs b/src/widgets/temp_graph.rs new file mode 100644 index 00000000..bbb3d089 --- /dev/null +++ b/src/widgets/temp_graph.rs @@ -0,0 +1 @@ +//! Code for a temperature graph widget. \ No newline at end of file