summarylogtreecommitdiffstats
path: root/w_arg.patch
diff options
context:
space:
mode:
Diffstat (limited to 'w_arg.patch')
-rw-r--r--w_arg.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/w_arg.patch b/w_arg.patch
new file mode 100644
index 000000000000..b4ae311df1f8
--- /dev/null
+++ b/w_arg.patch
@@ -0,0 +1,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