xdo_enter_text_window

Type a string to the specified window.

If you want to send a specific key or key sequence, such as "alt+l", you want instead xdo_send_keysequence_window(...).

@param window The window you want to send keystrokes to or CURRENTWINDOW @param string The string to type, like "Hello world!" @param delay The delay between keystrokes in microseconds. 12000 is a decent choice if you don't have other plans.

extern (C) nothrow @nogc
int
xdo_enter_text_window
(
const xdo_t* xdo
,
Window window
,
const char* string
,
useconds_t delay
)

Meta