diff options
| author | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-14 13:19:28 -0500 | 
|---|---|---|
| committer | Timmy Keller <tjk@tjkeller.xyz> | 2024-09-14 13:19:28 -0500 | 
| commit | 2932d08379f000b7a1b701358ff55534b7488225 (patch) | |
| tree | 05b7818a3487871adcf5322dbc2925dcad909d8d | |
| parent | 59281e6f872d8eeb6fc6dad1d792c60e84d0d2ee (diff) | |
| download | dotconfig-2932d08379f000b7a1b701358ff55534b7488225.tar.xz dotconfig-2932d08379f000b7a1b701358ff55534b7488225.zip  | |
add fontconfig to remove anti-aliasing on tamzen font
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | fontconfig/fonts.conf | 13 | 
2 files changed, 14 insertions, 0 deletions
@@ -12,6 +12,7 @@  !redshift  !x11  !zsh +!fontconfig  nvim/lazy-lock.json  nvim/.netrwhist diff --git a/fontconfig/fonts.conf b/fontconfig/fonts.conf new file mode 100644 index 0000000..bcb249f --- /dev/null +++ b/fontconfig/fonts.conf @@ -0,0 +1,13 @@ +<?xml version="1.0"?> +<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> + +<fontconfig> +	<match target="pattern"> +		<test name="family" compare="eq" qual="any"> +			<string>Tamzen</string> +		</test> +		<edit name="antialias" mode="assign"> +			<bool>false</bool> +		</edit> +	</match> +</fontconfig>  | 
