From 5ee39e88a3340725a04488ff777b091650e0ae3e Mon Sep 17 00:00:00 2001 From: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com> Date: Sun, 16 Nov 2025 00:49:06 +0100 Subject: [PATCH] chore: rename cmux to mux in the dogfood template (#20787) --- dogfood/coder/main.tf | 14 +++++++------- site/src/theme/icons.json | 2 +- site/static/icon/{cmux.svg => mux.svg} | 0 3 files changed, 8 insertions(+), 8 deletions(-) rename site/static/icon/{cmux.svg => mux.svg} (100%) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index d462711bfa..88a869dbad 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -268,16 +268,16 @@ data "coder_parameter" "ide_choices" { form_type = "multi-select" mutable = true description = "Choose one or more IDEs to enable in your workspace" - default = jsonencode(["vscode", "code-server", "cursor", "cmux"]) + default = jsonencode(["vscode", "code-server", "cursor", "mux"]) option { name = "VS Code Desktop" value = "vscode" icon = "/icon/code.svg" } option { - name = "cmux" - value = "cmux" - icon = "/icon/cmux.svg" + name = "mux" + value = "mux" + icon = "/icon/mux.svg" } option { name = "code-server" @@ -375,9 +375,9 @@ module "personalize" { agent_id = coder_agent.dev.id } -module "cmux" { - count = contains(jsondecode(data.coder_parameter.ide_choices.value), "cmux") ? data.coder_workspace.me.start_count : 0 - source = "registry.coder.com/coder/cmux/coder" +module "mux" { + count = contains(jsondecode(data.coder_parameter.ide_choices.value), "mux") ? data.coder_workspace.me.start_count : 0 + source = "registry.coder.com/coder/mux/coder" version = "1.0.0" agent_id = coder_agent.dev.id subdomain = true diff --git a/site/src/theme/icons.json b/site/src/theme/icons.json index 408ba3e3c7..fb055741c7 100644 --- a/site/src/theme/icons.json +++ b/site/src/theme/icons.json @@ -21,7 +21,6 @@ "centos.svg", "claude.svg", "clion.svg", - "cmux.svg", "code-insiders.svg", "code.svg", "coder.svg", @@ -83,6 +82,7 @@ "microsoft-teams.svg", "microsoft.svg", "mlflow.svg", + "mux.svg", "nextflow.svg", "nexus-repository.svg", "nix.svg", diff --git a/site/static/icon/cmux.svg b/site/static/icon/mux.svg similarity index 100% rename from site/static/icon/cmux.svg rename to site/static/icon/mux.svg