This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed
Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 11---
22display_name : Aider
33description : Run Aider AI pair programming in your workspace
4- icon : ../.icons/terminal .svg
4+ icon : ../.icons/aider .svg
55maintainer_github : coder
66verified : false
77tags : [agent, aider]
@@ -44,7 +44,7 @@ module "aider" {
4444| ` use_tmux ` | Whether to use tmux instead of screen for running Aider in the background | ` bool ` | ` false ` |
4545| ` session_name ` | Name for the persistent session (screen or tmux) | ` string ` | ` "aider" ` |
4646| ` order ` | Position of the app in the UI presentation | ` number ` | ` null ` |
47- | ` icon ` | The icon to use for the app | ` string ` | ` "/icon/terminal .svg" ` |
47+ | ` icon ` | The icon to use for the app | ` string ` | ` "/icon/aider .svg" ` |
4848| ` experiment_report_tasks ` | Whether to enable task reporting | ` bool ` | ` false ` |
4949| ` experiment_pre_install_script ` | Custom script to run before installing Aider | ` string ` | ` null ` |
5050| ` experiment_post_install_script ` | Custom script to run after installing Aider | ` string ` | ` null ` |
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ variable "order" {
2727variable "icon" {
2828 type = string
2929 description = " The icon to use for the app."
30- default = " /icon/terminal .svg"
30+ default = " /icon/aider .svg"
3131}
3232
3333variable "folder" {
@@ -94,7 +94,7 @@ locals {
9494resource "coder_script" "aider" {
9595 agent_id = var. agent_id
9696 display_name = " Aider"
97- icon = " /icon/terminal .svg"
97+ icon = " /icon/aider .svg"
9898 script = <<- EOT
9999 #!/bin/bash
100100 set -e
You can’t perform that action at this time.
0 commit comments