From 92f761f4bb14779c2a30e3cdfad5dba233494f3c Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Thu, 18 Dec 2025 14:12:05 +0100 Subject: [PATCH] Update font configuration --- group_vars/all/main.yml | 3 ++- host_vars/desktop/system.yml | 4 ++-- host_vars/htpc/system.yml | 2 +- host_vars/xps/system.yml | 4 ++-- templates/wezterm/includes/fonts.lua.j2 | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/group_vars/all/main.yml b/group_vars/all/main.yml index b08f525..fe8c455 100644 --- a/group_vars/all/main.yml +++ b/group_vars/all/main.yml @@ -8,7 +8,7 @@ packages: - iproute2 - curl - reflector - - ttf-inconsolata + - ttf-ibm-plex - systemd-ukify - efibootmgr - git-delta @@ -21,4 +21,5 @@ mkinitcpio_templates: [] server_domain: fudiggity.nl +wezterm_font: IBM Plex Mono Medm wezterm_font_size: 12 diff --git a/host_vars/desktop/system.yml b/host_vars/desktop/system.yml index b7c0ff8..471eab2 100644 --- a/host_vars/desktop/system.yml +++ b/host_vars/desktop/system.yml @@ -8,7 +8,7 @@ packages: - iproute2 - curl - reflector - - otf-monaspace-nerd + - ttf-ibm-plex - systemd-ukify - efibootmgr - git-delta @@ -50,4 +50,4 @@ mkinitcpio_templates: - src: 'templates/desktop/mkinitcpio/linux-lts.preset.j2' dest: '/etc/mkinitcpio.d/linux-lts.preset' -wezterm_font_size: 13 +wezterm_font_size: 12 diff --git a/host_vars/htpc/system.yml b/host_vars/htpc/system.yml index a7622c4..624f260 100644 --- a/host_vars/htpc/system.yml +++ b/host_vars/htpc/system.yml @@ -8,7 +8,7 @@ packages: - iproute2 - curl - reflector - - otf-monaspace-nerd + - ttf-ibm-plex - systemd-ukify - efibootmgr - git-delta diff --git a/host_vars/xps/system.yml b/host_vars/xps/system.yml index c17ea8a..3630640 100644 --- a/host_vars/xps/system.yml +++ b/host_vars/xps/system.yml @@ -8,7 +8,7 @@ packages: - iproute2 - curl - reflector - - otf-monaspace-nerd + - ttf-ibm-plex - systemd-ukify - efibootmgr - git-delta @@ -55,4 +55,4 @@ mkinitcpio_templates: - src: 'templates/xps/mkinitcpio/linux-lts.preset.j2' dest: '/etc/mkinitcpio.d/linux-lts.preset' -wezterm_font_size: 10 +wezterm_font_size: 11 diff --git a/templates/wezterm/includes/fonts.lua.j2 b/templates/wezterm/includes/fonts.lua.j2 index 1ca6637..311da3c 100644 --- a/templates/wezterm/includes/fonts.lua.j2 +++ b/templates/wezterm/includes/fonts.lua.j2 @@ -4,7 +4,7 @@ local wezterm = require 'wezterm'; return { font = wezterm.font( - 'Inconsolata Medium', + '{{ wezterm_font }}', { weight = 'Regular', stretch = 'Normal', style = 'Normal' } ),