mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-19 02:49:56 +00:00
130 lines
3.8 KiB
Plaintext
130 lines
3.8 KiB
Plaintext
h3.mb-3(translate) Appearance
|
|
.row
|
|
.col-12.col-md-6
|
|
.form-line
|
|
.header
|
|
.title(translate) Font
|
|
|
|
.input-group.w-75
|
|
input.form-control.w-75(
|
|
type='text',
|
|
[showHint]='true',
|
|
[ngbTypeahead]='fontAutocomplete',
|
|
[(ngModel)]='config.store.terminal.font',
|
|
(ngModelChange)='config.save()',
|
|
)
|
|
input.form-control.w-25(
|
|
type='number',
|
|
max='48',
|
|
[(ngModel)]='config.store.terminal.fontSize',
|
|
(ngModelChange)='fixFontSize(); config.save()',
|
|
)
|
|
|
|
.form-line
|
|
.header
|
|
.title(translate) Enable font ligatures
|
|
toggle(
|
|
[(ngModel)]='config.store.terminal.ligatures',
|
|
(ngModelChange)='config.save()',
|
|
)
|
|
|
|
.col-12.col-md-6
|
|
color-scheme-preview([scheme]='config.store.terminal.colorScheme', [fontPreview]='true')
|
|
|
|
.content-box
|
|
.form-line
|
|
.header
|
|
.title(translate) Terminal background
|
|
|
|
.btn-group(
|
|
[(ngModel)]='config.store.terminal.background',
|
|
(ngModelChange)='config.save()',
|
|
ngbRadioGroup
|
|
)
|
|
label.btn.btn-secondary(ngbButtonLabel)
|
|
input(
|
|
type='radio',
|
|
ngbButton,
|
|
[value]='"theme"'
|
|
)
|
|
span(translate) From theme
|
|
label.btn.btn-secondary(ngbButtonLabel)
|
|
input(
|
|
type='radio',
|
|
ngbButton,
|
|
[value]='"colorScheme"'
|
|
)
|
|
span(translate) From color scheme
|
|
|
|
.form-line
|
|
.header
|
|
.title(translate) Cursor shape
|
|
|
|
.btn-group(
|
|
[(ngModel)]='config.store.terminal.cursor',
|
|
(ngModelChange)='config.save()',
|
|
ngbRadioGroup
|
|
)
|
|
label.btn.btn-secondary(ngbButtonLabel)
|
|
input(
|
|
type='radio',
|
|
ngbButton,
|
|
[value]='"block"'
|
|
)
|
|
| █
|
|
label.btn.btn-secondary(ngbButtonLabel)
|
|
input(
|
|
type='radio',
|
|
ngbButton,
|
|
[value]='"beam"'
|
|
)
|
|
| |
|
|
label.btn.btn-secondary(ngbButtonLabel)
|
|
input(
|
|
type='radio',
|
|
ngbButton,
|
|
[value]='"underline"'
|
|
)
|
|
| ▁
|
|
|
|
.form-line
|
|
.header
|
|
.title(translate) Blink cursor
|
|
|
|
toggle(
|
|
[(ngModel)]='config.store.terminal.cursorBlink',
|
|
(ngModelChange)='config.save()',
|
|
)
|
|
|
|
.form-line
|
|
.header
|
|
.title(translate) Fallback font
|
|
.description(translate) A second font family used to display characters missing in the main font
|
|
|
|
input.form-control(
|
|
type='text',
|
|
[ngbTypeahead]='fontAutocomplete',
|
|
[(ngModel)]='config.store.terminal.fallbackFont',
|
|
(ngModelChange)='config.save()'
|
|
)
|
|
|
|
.form-line
|
|
.header
|
|
.title(translate) Line padding
|
|
.description(translate) Additional space between lines
|
|
input.form-control(
|
|
type='number',
|
|
[(ngModel)]='config.store.terminal.linePadding',
|
|
(ngModelChange)='config.save()',
|
|
)
|
|
|
|
|
|
.form-line
|
|
.header
|
|
.title(translate) Custom CSS
|
|
|
|
textarea.form-control.mb-5(
|
|
[(ngModel)]='config.store.appearance.css',
|
|
(ngModelChange)='saveConfiguration()',
|
|
)
|