(text)
| 170 | return (await runCommand(command.cmd, command.args, command.options)).stdout; |
| 171 | }, |
| 172 | async writeText(text) { |
| 173 | const tool = await resolveLocalLinuxTool(whichCommand, LOCAL_CLIPBOARD_TOOLS); |
| 174 | const command = LOCAL_CLIPBOARD_WRITE_COMMANDS[tool](text); |
| 175 | await runCommand(command.cmd, command.args, command.options); |
| 176 | }, |
| 177 | }; |
| 178 | } |
| 179 |
nothing calls this directly
no test coverage detected