()
| 25 | * Send Alt+Left arrow to go back (standard browser/app back navigation). |
| 26 | */ |
| 27 | export async function backLinux(): Promise<void> { |
| 28 | // Alt=56, Left=105 |
| 29 | await sendKey('alt+Left', ['56:1', '105:1', '105:0', '56:0']); |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Show desktop (minimize all windows) via Super+D. |
no test coverage detected
searching dependent graphs…