mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 17:28:06 +00:00
various scripts in appearance preview
This commit is contained in:
parent
8d767ac497
commit
2ee336bef8
1 changed files with 20 additions and 8 deletions
|
@ -13,7 +13,7 @@ h3.mb-3 Appearance
|
||||||
option(value='hterm') hterm
|
option(value='hterm') hterm
|
||||||
option(value='xterm') xterm
|
option(value='xterm') xterm
|
||||||
option(value='xterm-webgl') xterm (WebGL)
|
option(value='xterm-webgl') xterm (WebGL)
|
||||||
|
|
||||||
.form-line
|
.form-line
|
||||||
.header
|
.header
|
||||||
.title Font
|
.title Font
|
||||||
|
@ -36,7 +36,7 @@ h3.mb-3 Appearance
|
||||||
.header
|
.header
|
||||||
.title Enable font ligatures
|
.title Enable font ligatures
|
||||||
toggle(
|
toggle(
|
||||||
[(ngModel)]='config.store.terminal.ligatures',
|
[(ngModel)]='config.store.terminal.ligatures',
|
||||||
(ngModelChange)='config.save()',
|
(ngModelChange)='config.save()',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -160,13 +160,13 @@ h3.mb-3 Appearance
|
||||||
span([style.color]='config.store.terminal.colorScheme.colors[1]') $
|
span([style.color]='config.store.terminal.colorScheme.colors[1]') $
|
||||||
span ls -l
|
span ls -l
|
||||||
div
|
div
|
||||||
span drwxr-xr-x 1 root
|
span drwxr-xr-x 1 root
|
||||||
span([style.color]='config.store.terminal.colorScheme.colors[4]') directory
|
span([style.color]='config.store.terminal.colorScheme.colors[4]') directory 📁
|
||||||
div
|
div
|
||||||
span -rw-r--r-- 1 root file
|
span -rw-r--r-- 1 root файл
|
||||||
div
|
div
|
||||||
span -rwxr-xr-x 1 root
|
span -rwxr-xr-x 1 root
|
||||||
span([style.color]='config.store.terminal.colorScheme.colors[2]') executable
|
span([style.color]='config.store.terminal.colorScheme.colors[2]') 実行可能ファイル
|
||||||
div
|
div
|
||||||
span -rwxr-xr-x 1 root
|
span -rwxr-xr-x 1 root
|
||||||
span([style.color]='config.store.terminal.colorScheme.colors[6]') sym
|
span([style.color]='config.store.terminal.colorScheme.colors[6]') sym
|
||||||
|
@ -203,7 +203,7 @@ h3.mb-3 Appearance
|
||||||
[value]='"colorScheme"'
|
[value]='"colorScheme"'
|
||||||
)
|
)
|
||||||
| From color scheme
|
| From color scheme
|
||||||
|
|
||||||
.form-line
|
.form-line
|
||||||
.header
|
.header
|
||||||
.title Cursor shape
|
.title Cursor shape
|
||||||
|
@ -234,7 +234,7 @@ h3.mb-3 Appearance
|
||||||
[value]='"underline"'
|
[value]='"underline"'
|
||||||
)
|
)
|
||||||
| ▁
|
| ▁
|
||||||
|
|
||||||
.form-line
|
.form-line
|
||||||
.header
|
.header
|
||||||
.title Blink cursor
|
.title Blink cursor
|
||||||
|
@ -243,3 +243,15 @@ h3.mb-3 Appearance
|
||||||
[(ngModel)]='config.store.terminal.cursorBlink',
|
[(ngModel)]='config.store.terminal.cursorBlink',
|
||||||
(ngModelChange)='config.save()',
|
(ngModelChange)='config.save()',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
.form-line
|
||||||
|
.header
|
||||||
|
.title Fallback font
|
||||||
|
.description 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()'
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in a new issue