sway/get_outputs.go

6 lines
106 B
Go
Raw Normal View History

2024-02-14 15:26:04 +01:00
package sway
2024-02-14 16:48:50 +01:00
func (c *Client) GetOutputs() ([]Output, error) {
return sendMessage[[]Output](c, 3, "")
2024-02-14 15:26:04 +01:00
}