Browse Source

Fix silly search/replace problem

Getty Ritter 4 years ago
parent
commit
537aa2e06d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main.rs

+ 1 - 1
src/main.rs

@@ -23,7 +23,7 @@ fn rofi_choose<'a, I>(choices: I) -> Result<String, Error>
     where I: Iterator<Item=&'a String>
 {
     let mut rofi = Command::new("rofi")
-        .args(&["-rofi", "-i", "-l", "10"])
+        .args(&["-dmenu", "-i", "-l", "10"])
         .stdin(Stdio::piped())
         .stdout(Stdio::piped())
         .spawn()?;