sway/get_inputs.go

7 lines
177 B
Go
Raw Normal View History

2024-02-14 16:48:50 +01:00
package sway
2024-02-14 17:21:50 +01:00
// GetInputs returns all input devices and their properties
2024-02-14 16:48:50 +01:00
func (c *Client) GetInputs() ([]InputDevice, error) {
return sendMessage[[]InputDevice](c, 100, "")
}