Skip to content

add emacs icon #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions templates/emacs-pod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ resource "coder_app" "emacs-broadway" {
agent_id = coder_agent.main.id
slug = "emacs-broadway"
display_name = "Emacs on Broadway"
icon = "/icon/folder.svg" # let's maybe get an emacs.svg somehow
icon = "https://upload.wikimedia.org/wikipedia/commons/0/08/EmacsIcon.svg"
url = "http://localhost:8085" # port 8080 + BROADWAY_DISPLAY

# healthcheck {
Expand All @@ -82,7 +82,7 @@ resource "coder_app" "ttyd" {
share = "public"
slug = "ttyd"
display_name = "ttyd for tmux"
icon = "/icon/folder.svg" # let's maybe get an emacs.svg somehow
icon = "https://upload.wikimedia.org/wikipedia/commons/0/08/EmacsIcon.svg"
agent_id = coder_agent.main.id
url = "http://localhost:7681" # 7681 is the default ttyd port

Expand All @@ -99,7 +99,7 @@ resource "coder_app" "tmux" {
agent_id = coder_agent.main.id
display_name = "tmux"
slug = "tmux"
icon = "/icon/folder.svg" # let's maybe get an emacs.svg somehow
icon = "https://upload.wikimedia.org/wikipedia/commons/0/08/EmacsIcon.svg"
command = "tmux at"
share = "public"
}
Expand Down