From 5dbb7bbebc3415e014d1b99a684fe30540bdd462 Mon Sep 17 00:00:00 2001 From: xwindows Date: Thu, 25 Dec 2025 12:16:32 +0700 Subject: [PATCH] Use system version of Liberation Mono font whenever available This fixes a non-antialiased font rendering problem introduced by commit 79859e00375fc9441818255ac72c92c37222790e on systems which already have Liberation Mono font installed. This change is a fix-forward replacement of a previously-submitted patch, that was improperly applied as a commit 96452278ccc37481afd31ba84699fd9431c55f78. This patch is provided to Tilde.club under the terms of GNU General Public License, any version published by the Free Software Foundation. --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 17f597f..eccd1a5 100644 --- a/style.css +++ b/style.css @@ -16,7 +16,7 @@ body { margin: auto; padding: 1em; max-width: 1024px; - font-family: 'Liberation Monospace', 'Courier New', monospace, sans-serif; + font-family: 'Liberation Mono', 'Liberation Monospace', 'Courier New', monospace, sans-serif; color: #fb5; background: #111; word-wrap: break-word;