wezterm: default to system monospace font

Fixes: #40736
Signed-off-by: Joseph Benden <joe@benden.us>
This commit is contained in:
Joseph Benden 2022-11-24 13:50:16 -07:00 committed by classabbyamp
parent eef6d5326a
commit d786771344
2 changed files with 15 additions and 2 deletions

View File

@ -0,0 +1,11 @@
--- a/config/src/font.rs 2022-09-05 10:28:02.000000000 -0700
+++ b/config/src/font.rs 2022-11-24 11:27:15.115251410 -0700
@@ -407,7 +407,7 @@
impl Default for FontAttributes {
fn default() -> Self {
Self {
- family: "JetBrains Mono".into(),
+ family: "monospace".into(),
weight: FontWeight::default(),
stretch: FontStretch::default(),
style: FontStyle::Normal,

View File

@ -1,7 +1,7 @@
# Template file for 'wezterm'
pkgname=wezterm
version=20221119
revision=1
revision=2
_srcver=${version}-145034-49b9839f
archs="x86_64* i686* aarch64* arm*" # ring
build_style=cargo
@ -27,7 +27,9 @@ do_check() {
cargo test --target ${RUST_TARGET} --workspace --locked -- \
--skip e2e::sftp \
--skip escape::action_size \
--skip surface::line::storage::test::memory_usage
--skip surface::line::storage::test::memory_usage \
--skip shapecache::test::ligatures_fira \
--skip shapecache::test::ligatures_jetbrains
}
do_install() {