feat: add sudo password and add diagonal bg's

This commit is contained in:
LukeGus
2025-12-20 02:03:27 -06:00
parent b7fdb2143d
commit 5f18a38eec
10 changed files with 84 additions and 11 deletions

View File

@@ -28,6 +28,7 @@ export interface SSHHost {
key?: string;
keyPassword?: string;
keyType?: string;
sudoPassword?: string;
forceKeyboardInteractive?: boolean;
autostartPassword?: string;
@@ -95,6 +96,7 @@ export interface SSHHostData {
key?: File | null;
keyPassword?: string;
keyType?: string;
sudoPassword?: string;
credentialId?: number | null;
overrideCredentialUsername?: boolean;
enableTerminal?: boolean;