From 190e1cd5508de467e0af3f2fd0784eacebe6bc1c Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 24 Dec 2023 22:10:20 +0300 Subject: [PATCH] Use wezterm instead of foot It's fast and Wayland native, but doesn't have the weird character box width glitch. --- dotfiles/config/sway/config | 2 +- dotfiles/wezterm.lua | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dotfiles/config/sway/config b/dotfiles/config/sway/config index 941cb68..300d622 100644 --- a/dotfiles/config/sway/config +++ b/dotfiles/config/sway/config @@ -14,7 +14,7 @@ set $down j set $up k set $right l # Your preferred terminal emulator -set $term foot +set $term wezterm # Your preferred application launcher # Note: pass the final command to swaymsg so that the resulting window can be opened # on the original workspace that the command was run on. diff --git a/dotfiles/wezterm.lua b/dotfiles/wezterm.lua index e28d60d..0d04b0d 100644 --- a/dotfiles/wezterm.lua +++ b/dotfiles/wezterm.lua @@ -10,6 +10,9 @@ if wezterm.config_builder then config = wezterm.config_builder() end +config.font = wezterm.font 'Cascadia Mono' +config.font_size = 13.5 + -- This is where you actually apply your config choices -- Selenized colors by Alan Orth