sway/get_inputs.go

6 lines
117 B
Go
Raw Normal View History

2024-02-14 16:48:50 +01:00
package sway
func (c *Client) GetInputs() ([]InputDevice, error) {
return sendMessage[[]InputDevice](c, 100, "")
}