2024-02-14 16:36:12 +01:00
|
|
|
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) {
|
2024-02-14 16:36:12 +01:00
|
|
|
return sendMessage[[]string](c, 8, "")
|
|
|
|
}
|