Nushell plugin for interacting with D-Bus
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Quick patch release 0.2.1: take out the pattern debugging statement in `dbus list`

+1 -2
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "nu_plugin_dbus" 3 - version = "0.2.0" 3 + version = "0.2.1" 4 4 edition = "2021" 5 5 6 6 description = "Nushell plugin for communicating with D-Bus"
-1
src/client.rs
··· 337 337 .map(|names: Vec<String>| { 338 338 // Filter the names by the pattern 339 339 if let Some(pattern) = pattern { 340 - eprintln!("pattern: {:?}", pattern); 341 340 names.into_iter().filter(|name| pattern.is_match(name)).collect() 342 341 } else { 343 342 names