summarylogtreecommitdiffstats
path: root/w_arg.patch
blob: b4ae311df1f8b9c2b40773fb4a62597e6f707508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/main.rs b/src/main.rs
index 1a63192..11049d3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -380,7 +380,7 @@ fn idle_fn(cmd: &str, args: Vec<&str>) -> IdleResult {
         };
         let display = format!(":{}", device.chars().rev().next().unwrap_or('0'));
         let mut output = Command::new("w")
-            .arg("-hus")
+            .arg("-husf")
             .stdout(Stdio::piped()).spawn()?;
         let _ = output.wait()?;
         let w_stdout = output.stdout