From 953fdaaf1ec5a202e5a619e03c21c3ef481dde74 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 19 Jan 2023 18:28:20 +0100 Subject: [PATCH] iosevka: Fix font naming scheme update New versions of Iosevka seem to not be callable simply through 'Iosevka' as before but require the full 'Iosevka Nerd Font' terminus for my case of having the archlinux nerdfont package for the font installed. This commit fixes wrong fonts in wayland and the wezterm terminal as well as a longer running issue in mpv so they all correctly display Iosevka. --- desktop/.config/fontconfig/fonts.conf | 2 +- multimedia/.config/mpv/mpv.conf | 4 ++-- terminal/.config/wezterm/wezterm.lua | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/desktop/.config/fontconfig/fonts.conf b/desktop/.config/fontconfig/fonts.conf index 97c38de..3dc933d 100644 --- a/desktop/.config/fontconfig/fonts.conf +++ b/desktop/.config/fontconfig/fonts.conf @@ -11,7 +11,7 @@ monospace - Iosevka + Iosevka Nerd Font fantasy diff --git a/multimedia/.config/mpv/mpv.conf b/multimedia/.config/mpv/mpv.conf index 2bb8cf4..d928d32 100644 --- a/multimedia/.config/mpv/mpv.conf +++ b/multimedia/.config/mpv/mpv.conf @@ -35,8 +35,8 @@ screenshot-tag-colorspace=yes osc=no osd-bar=no -osd-font='Iosevka Mono' -osd-font-size=16 +osd-font='Iosevka Nerd Font' +osd-font-size=15 ### Subtitles diff --git a/terminal/.config/wezterm/wezterm.lua b/terminal/.config/wezterm/wezterm.lua index 24905df..525036c 100644 --- a/terminal/.config/wezterm/wezterm.lua +++ b/terminal/.config/wezterm/wezterm.lua @@ -64,12 +64,12 @@ return { tab_bar_at_bottom = true, window_padding = { left = 0, right = 0, top = 0, bottom = 0 }, - color_scheme = "Nord (base16)", + color_scheme = "Railscasts (base16)", -- default_prog = {"nu"}, scrollback_lines = 10000, - font = wezterm.font('Iosevka'), + font = wezterm.font('Iosevka Nerd Font'), line_height = 1.0, leader = { key = 'a', mods = 'CTRL', timeout_milliseconds = 1500 },