Quellcode durchsuchen

Fix silly search/replace problem

Getty Ritter vor 5 Jahren
Ursprung
Commit
537aa2e06d
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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()?;