This commit is contained in:
crschnick
2026-03-20 15:52:20 +00:00
parent fd29b723c3
commit ada66ebf50
4 changed files with 8 additions and 8 deletions

View File

@@ -77,8 +77,10 @@ public class TerminalMultiplexerManager {
ThreadHelper.sleep(100);
}
// Give multiplexer a second to start in terminal
ThreadHelper.sleep(1000);
// We timed out
pendingMultiplexerLaunch = null;
runningMultiplexerContainer = null;
}
// Synchronize between multiple existing tab launches as well as some multiplexers might break there

View File

@@ -89,10 +89,7 @@ public class ZellijTerminalMultiplexer implements TerminalMultiplexer {
"zellij -s xpipe action new-tab --name \"" + escape(config.getColoredTitle(), false, true) + "\"",
"zellij -s xpipe action write-chars -- " + escape(" " + firstCommand, true, true) + "\\;exit",
"zellij -s xpipe action write 10",
"zellij -s xpipe action clear",
"zellij -s xpipe action rename-tab \"" + escape(config.getColoredTitle(), false, true) + "\"",
"zellij -s xpipe action go-to-previous-tab",
"zellij -s xpipe action close-tab"));
"zellij -s xpipe action clear"));
if (config.getPanes().size() > 1) {
var splitIterator =

View File

@@ -72,10 +72,10 @@
-fx-padding: 0.7em 1.0em 0.7em 1.0em;
}
.root:macos:nord .toggle-switch-comp > .thumb {
.root:light:nord .toggle-switch-comp > .thumb, .root:dark:nord .toggle-switch-comp > .thumb {
-fx-background-radius: 0em;
}
.root:macos:nord .toggle-switch-comp > .thumb-area {
.root:light:nord .toggle-switch-comp > .thumb-area, .root:dark:nord .toggle-switch-comp > .thumb-area {
-fx-border-radius: 0;
}

View File

@@ -77,3 +77,4 @@ The filtering performance also has been improved, so any filter changes now upda
- Improve timeout handling for shells to allow for a quicker shell init
- Fix SSH being broken when a custom alias to a modified ssh command was set in a shell rc file
- Fix shell scripts for mixed environments, e.g. a powershell script in cmd environment, not properly running
- The SSH connection property `proxy` in the API has been renamed to `gateway` to be more consistent with other connections