sway/get_outputs.go

7 lines
161 B
Go
Raw Permalink Normal View History

2024-02-14 15:26:04 +01:00
package sway
2024-02-14 17:21:50 +01:00
// GetOutputs returns all outputs and their properties
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
}