screenshotting bug fix

This commit is contained in:
Dhanji Prasanna
2025-10-24 20:40:43 +11:00
parent 65f25f840e
commit 834153ea69
2 changed files with 35 additions and 8 deletions

View File

@@ -47,8 +47,8 @@ fn main() {
"".to_string()
};
// Filter for iTerm or show all
if owner.contains("iTerm") || owner.contains("Terminal") {
// Show all windows
if !owner.is_empty() {
println!("{:<10} {:<25} {}", window_id, owner, title);
}
}