From 066d0871bb5d2e26731f754052a4d4a503bd1935 Mon Sep 17 00:00:00 2001 From: Tine Date: Fri, 19 Apr 2024 14:25:03 +0200 Subject: [PATCH] chore: stupid fonts --- kitty/kitty.conf | 6 +++--- scripts/fonts-test.sh | 9 +++++++++ 2 files changed, 12 insertions(+), 3 deletions(-) create mode 100755 scripts/fonts-test.sh diff --git a/kitty/kitty.conf b/kitty/kitty.conf index b8e9e17..2944e74 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -1,6 +1,6 @@ -font_family mnts.dev -bold_font mnts.dev Bold -italic_font mnts.dev Medium Italic +font_family mnts.dev Regular +bold_font mnts.dev +italic_font mnts.dev Italic bold_italic_font mnts.dev Bold Italic disable_ligatures never diff --git a/scripts/fonts-test.sh b/scripts/fonts-test.sh new file mode 100755 index 0000000..9473191 --- /dev/null +++ b/scripts/fonts-test.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +echo -e "\e[0mdefault\e[0m" +echo -e "\e[1mbold\e[0m" +echo -e "\e[3mitalic\e[0m" +echo -e "\e[3m\e[1mbold italic\e[0m" +echo -e "\e[4munderline\e[0m" +echo -e "\e[9mstrikethrough\e[0m" +echo -e "\e[31mHello World\e[0m"