|
@@ -242,50 +242,46 @@ h3.mb-3 Appearance
|
|
|
|
|
|
|
|
h3.mt-3.mb-3 Shell
|
|
h3.mt-3.mb-3 Shell
|
|
|
|
|
|
|
|
-.row
|
|
|
|
|
- .col-md-6
|
|
|
|
|
- .d-flex
|
|
|
|
|
- .form-group.mr-3
|
|
|
|
|
- label Shell
|
|
|
|
|
- select.form-control(
|
|
|
|
|
- [(ngModel)]='config.store.terminal.shell',
|
|
|
|
|
- (ngModelChange)='config.save()',
|
|
|
|
|
- )
|
|
|
|
|
- option(
|
|
|
|
|
- *ngFor='let shell of shells',
|
|
|
|
|
- [ngValue]='shell.id'
|
|
|
|
|
- ) {{shell.name}}
|
|
|
|
|
|
|
+.d-flex
|
|
|
|
|
+ .form-group.mr-3
|
|
|
|
|
+ label Shell
|
|
|
|
|
+ select.form-control(
|
|
|
|
|
+ [(ngModel)]='config.store.terminal.shell',
|
|
|
|
|
+ (ngModelChange)='config.save()',
|
|
|
|
|
+ )
|
|
|
|
|
+ option(
|
|
|
|
|
+ *ngFor='let shell of shells',
|
|
|
|
|
+ [ngValue]='shell.id'
|
|
|
|
|
+ ) {{shell.name}}
|
|
|
|
|
|
|
|
- .form-group(*ngIf='persistenceProviders.length > 0')
|
|
|
|
|
- label Session persistence
|
|
|
|
|
- select.form-control(
|
|
|
|
|
- [(ngModel)]='config.store.terminal.persistence',
|
|
|
|
|
- (ngModelChange)='config.save()',
|
|
|
|
|
- )
|
|
|
|
|
- option([ngValue]='null') Off
|
|
|
|
|
- option(
|
|
|
|
|
- *ngFor='let provider of persistenceProviders',
|
|
|
|
|
- [ngValue]='provider.id'
|
|
|
|
|
- ) {{provider.displayName}}
|
|
|
|
|
-
|
|
|
|
|
- .form-group(*ngIf='config.store.terminal.shell == "custom"')
|
|
|
|
|
- label Custom shell
|
|
|
|
|
- input.form-control(
|
|
|
|
|
- type='text',
|
|
|
|
|
- [(ngModel)]='config.store.terminal.customShell',
|
|
|
|
|
- (ngModelChange)='config.save()',
|
|
|
|
|
- )
|
|
|
|
|
|
|
+ .form-group.mr-3(*ngIf='persistenceProviders.length > 0')
|
|
|
|
|
+ label Session persistence
|
|
|
|
|
+ select.form-control(
|
|
|
|
|
+ [(ngModel)]='config.store.terminal.persistence',
|
|
|
|
|
+ (ngModelChange)='config.save()',
|
|
|
|
|
+ )
|
|
|
|
|
+ option([ngValue]='null') Off
|
|
|
|
|
+ option(
|
|
|
|
|
+ *ngFor='let provider of persistenceProviders',
|
|
|
|
|
+ [ngValue]='provider.id'
|
|
|
|
|
+ ) {{provider.displayName}}
|
|
|
|
|
|
|
|
- .col-md-6
|
|
|
|
|
- .form-group
|
|
|
|
|
- label Working directory
|
|
|
|
|
- input.form-control(
|
|
|
|
|
- type='text',
|
|
|
|
|
- placeholder='Home directory',
|
|
|
|
|
- [(ngModel)]='config.store.terminal.workingDirectory',
|
|
|
|
|
- (ngModelChange)='config.save()',
|
|
|
|
|
- )
|
|
|
|
|
|
|
+ .form-group
|
|
|
|
|
+ label Working directory
|
|
|
|
|
+ input.form-control(
|
|
|
|
|
+ type='text',
|
|
|
|
|
+ placeholder='Home directory',
|
|
|
|
|
+ [(ngModel)]='config.store.terminal.workingDirectory',
|
|
|
|
|
+ (ngModelChange)='config.save()',
|
|
|
|
|
+ )
|
|
|
|
|
|
|
|
|
|
+.form-group(*ngIf='config.store.terminal.shell == "custom"')
|
|
|
|
|
+ label Custom shell
|
|
|
|
|
+ input.form-control(
|
|
|
|
|
+ type='text',
|
|
|
|
|
+ [(ngModel)]='config.store.terminal.customShell',
|
|
|
|
|
+ (ngModelChange)='config.save()',
|
|
|
|
|
+ )
|
|
|
|
|
|
|
|
|
|
|
|
|
h3.mt-3.mb-3 Behaviour
|
|
h3.mt-3.mb-3 Behaviour
|
|
@@ -321,7 +317,7 @@ h3.mt-3.mb-3 Behaviour
|
|
|
| Audible
|
|
| Audible
|
|
|
|
|
|
|
|
.form-group
|
|
.form-group
|
|
|
- label Right click behaviour
|
|
|
|
|
|
|
+ label Right click
|
|
|
br
|
|
br
|
|
|
.btn-group(
|
|
.btn-group(
|
|
|
[(ngModel)]='config.store.terminal.rightClick',
|
|
[(ngModel)]='config.store.terminal.rightClick',
|