Allow configuration of intel pstates paired with fan-modes

This commit is contained in:
Luke
2020-05-02 19:31:40 +12:00
parent 1a967f315b
commit f12bb1d4f6
10 changed files with 169 additions and 92 deletions

View File

@@ -1,7 +1,11 @@
/// Configuration loading, saving
mod config;
/// The core module which allows writing to LEDs or polling the
/// laptop keyboard attached devices
pub mod core;
mod core;
/// Start the daemon loop
pub mod daemon;
pub mod laptops;
/// Laptop matching to determine capabilities
mod laptops;
/// A virtual "consumer device" to help emit the correct key codes
mod virt_device;