reduce duplication

This commit is contained in:
Rasmus Moorats 2024-08-30 14:39:07 +03:00
parent d25ddb487e
commit bdf01d18ce
Signed by: xx
GPG key ID: FE14255A6AE7241C

View file

@ -60,15 +60,16 @@ where
fn main() -> Result<(), Box<dyn std::error::Error>>{
let cli = Cli::parse();
let mut connection = Connection::new()?;
let tree = connection.get_tree()?;
let node = match cli.use_field {
UseField::Class => find_node(&connection.get_tree()?, |node: &Node| {
UseField::Class => find_node(&tree, |node: &Node| {
node.window_properties
.as_ref()
.and_then(|p| p.class.as_deref())
== Some(&cli.identifier)
}),
UseField::AppId => find_node(&connection.get_tree()?, |node: &Node| {
UseField::AppId => find_node(&tree, |node: &Node| {
node.app_id.as_deref() == Some(&cli.identifier)
}),
};