mirror of
https://github.com/RGBCube/superfreq
synced 2025-07-27 17:07:44 +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");
|
||||
manage_auto_turbo(report, selected_profile_config)?;
|
||||
} 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)", || {
|
||||
cpu::set_turbo(turbo_setting)
|
||||
})?;
|
||||
|
|
|
@ -148,7 +148,7 @@ fn main() -> Result<(), AppError> {
|
|||
.unwrap_or("N/A")
|
||||
);
|
||||
println!(
|
||||
"Available Governors: {}",
|
||||
"Available Governors: {}", // 21 length baseline
|
||||
report.cpu_global.available_governors.join(", ")
|
||||
);
|
||||
println!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue