Feature Sudo password auto-fill;

This commit is contained in:
Nunzio Marfè
2025-12-05 18:08:33 +01:00
parent f0647dc7c1
commit 8d52bef631
11 changed files with 1585 additions and 1422 deletions

View File

@@ -307,6 +307,7 @@ export interface TerminalConfig {
startupSnippetId: number | null;
autoMosh: boolean;
moshCommand: string;
sudoPasswordAutoFill: boolean;
}
// ============================================================================
@@ -316,13 +317,13 @@ export interface TerminalConfig {
export interface TabContextTab {
id: number;
type:
| "home"
| "terminal"
| "ssh_manager"
| "server"
| "admin"
| "file_manager"
| "user_profile";
| "home"
| "terminal"
| "ssh_manager"
| "server"
| "admin"
| "file_manager"
| "user_profile";
title: string;
hostConfig?: SSHHost;
terminalRef?: any;