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"