Fix silly search/replace problem
Getty Ritter
6 years ago
| 23 | 23 |
where I: Iterator<Item=&'a String>
|
| 24 | 24 |
{
|
| 25 | 25 |
let mut rofi = Command::new("rofi")
|
| 26 | |
.args(&["-rofi", "-i", "-l", "10"])
|
| 26 |
.args(&["-dmenu", "-i", "-l", "10"])
|
| 27 | 27 |
.stdin(Stdio::piped())
|
| 28 | 28 |
.stdout(Stdio::piped())
|
| 29 | 29 |
.spawn()?;
|