Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit ff8dbe1

Browse files
feat(aider): add Aider icon and update references in README.md and main.tf
1 parent f719a61 commit ff8dbe1

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

.icons/aider.svg

Lines changed: 27 additions & 0 deletions
Loading

aider/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
display_name: Aider
33
description: Run Aider AI pair programming in your workspace
4-
icon: ../.icons/terminal.svg
4+
icon: ../.icons/aider.svg
55
maintainer_github: coder
66
verified: false
77
tags: [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` |

aider/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "order" {
2727
variable "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

3333
variable "folder" {
@@ -94,7 +94,7 @@ locals {
9494
resource "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

0 commit comments

Comments
 (0)