Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A comprehensive guide for AI agents working on the multi-ssh project, providing

## Project Overview

multi-ssh is an electron app
multi-ssh is an electron app allowing to connect to multiple ssh hosts at the same time wich one separate embedded terminal per session.

## General Guidelines

Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.3/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
"root": true,
"vcs": {
"enabled": true,
Expand Down
4 changes: 1 addition & 3 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ module.exports = {
appBundleId: "com.github.guenhter.multi-ssh",
productName: "Multi SSH",
files: ["main.js", "renderer.js", "index.html", "node_modules/**/*"],
extraResource: [
"multi_ssh_config.sample.yaml"
],
extraResource: ["multi_ssh_config.sample.yaml"],
},
rebuildConfig: {},
makers: [
Expand Down
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,20 @@
padding-right: 5px; /* Account for scrollbar */
}

/* Very wide main scrollbar to make it easy to grab the scrollbar and not use the one from the sub-terminal */
.terminals-container::-webkit-scrollbar {
width: 30px;
}

.terminals-container::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}

.terminals-container::-webkit-scrollbar-track {
background: #333;
}

.terminal-wrapper {
border: 2px solid #444;
border-radius: 8px;
Expand Down
1 change: 1 addition & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ function initializeTerminal(index, shell, host) {
code: exitCode,
signal,
});
ptyProcesses[index] = null;
});

ptyProcesses[index] = ptyProcess;
Expand Down