(app: string)
| 18 | * Uses wmctrl if available, falls back to pkill. |
| 19 | */ |
| 20 | export async function closeLinuxApp(app: string): Promise<void> { |
| 21 | await resolveLinuxToolProvider().desktop.closeApp(app); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Send Alt+Left arrow to go back (standard browser/app back navigation). |
no test coverage detected