Browse Source

Remove redundant xclip -f flag because we pipe stdout to null now

See https://gitlab.com/timvisee/ffsend/issues/93
timvisee 5 years ago
parent
commit
86d8d5e329
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/util.rs

+ 0 - 1
src/util.rs

@@ -395,7 +395,6 @@ impl ClipboardType {
         Self::sys_cmd_set(
         Self::sys_cmd_set(
             "xclip",
             "xclip",
             Command::new(path.unwrap_or_else(|| "xclip".into()))
             Command::new(path.unwrap_or_else(|| "xclip".into()))
-                .arg("-f")
                 .arg("-sel")
                 .arg("-sel")
                 .arg("clip"),
                 .arg("clip"),
             content,
             content,