fix examples to use correct RunContainerCommand() api

This commit is contained in:
2025-08-21 10:39:06 +02:00
parent af9eaaf8ae
commit 3102978317
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ func main() {
// finally execute the given commands on it, you can use any run
// command, see sway(5)
responses, err := ipc.RunContainerCommand(focused.Id, "floating toggle, border toggle")
responses, err := ipc.RunContainerCommand(focused.Id, "floating toggle", "border toggle")
if err != nil {
repr.Println(responses)
log.Fatal(err)