sway/get_binding_modes.go

7 lines
186 B
Go
Raw Normal View History

package sway
2024-02-14 17:21:50 +01:00
// GetBindingModes returns all binding modes configured in the config file
2024-02-14 16:48:50 +01:00
func (c *Client) GetBindingModes() ([]string, error) {
return sendMessage[[]string](c, 8, "")
}