Pārlūkot izejas kodu

Fix silly search/replace problem

Getty Ritter 5 gadi atpakaļ
vecāks
revīzija
537aa2e06d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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()?;