Fix timeout for GFX switching

This commit is contained in:
Luke D Jones
2020-09-24 07:53:34 +12:00
parent 2daa7f0811
commit 622cd9d943
7 changed files with 21 additions and 21 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "asus-nb-ctrl"
version = "2.0.3"
version = "2.0.4"
license = "MPL-2.0"
readme = "README.md"
authors = ["Luke <luke@ljones.dev>"]

View File

@@ -107,7 +107,7 @@ fn do_gfx(
) -> Result<(), Box<dyn std::error::Error>> {
if let Some(mode) = command.mode {
println!("Updating settings, please wait...");
println!("If this takes longer than 30s, ctrl+c then check journalctl");
println!("If this takes longer than 30s, ctrl+c then check `journalctl -b -u asusd`");
writer.write_gfx_mode(mode)?;
let res = writer.wait_gfx_changed()?;