auto-cpufreq 3.2.2

Automatic CPU speed & power optimizer for Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod battery;
pub mod config;
pub mod core;
pub mod globals;
pub mod modules;
pub mod power_helper;
pub mod tlp_stat_parser;

// Re-exports
pub use config::{find_config_file, CONFIG};
pub use globals::*; // CONFIG re-export now works

#[cfg(feature = "gui")]
pub mod gui;