mirror of
https://github.com/RGBCube/superfreq
synced 2025-07-28 01:17:45 +00:00
cli: pad output to prevent misaligned text
This commit is contained in:
parent
7a708c60d7
commit
1b31dd9e1e
2 changed files with 10 additions and 8 deletions
|
@ -117,7 +117,9 @@ pub fn determine_and_apply_settings(
|
||||||
debug!("Managing turbo in auto mode based on system conditions");
|
debug!("Managing turbo in auto mode based on system conditions");
|
||||||
manage_auto_turbo(report, selected_profile_config)?;
|
manage_auto_turbo(report, selected_profile_config)?;
|
||||||
} else {
|
} else {
|
||||||
debug!("Auto turbo management disabled by configuration, using system default behavior");
|
debug!(
|
||||||
|
"Auto turbo management disabled by configuration, using system default behavior"
|
||||||
|
);
|
||||||
try_apply_feature("Turbo boost", "system default (Auto)", || {
|
try_apply_feature("Turbo boost", "system default (Auto)", || {
|
||||||
cpu::set_turbo(turbo_setting)
|
cpu::set_turbo(turbo_setting)
|
||||||
})?;
|
})?;
|
||||||
|
|
|
@ -148,7 +148,7 @@ fn main() -> Result<(), AppError> {
|
||||||
.unwrap_or("N/A")
|
.unwrap_or("N/A")
|
||||||
);
|
);
|
||||||
println!(
|
println!(
|
||||||
"Available Governors: {}",
|
"Available Governors: {}", // 21 length baseline
|
||||||
report.cpu_global.available_governors.join(", ")
|
report.cpu_global.available_governors.join(", ")
|
||||||
);
|
);
|
||||||
println!(
|
println!(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue