From ce769c332f8b2727f055090bcba9125d2584ae06 Mon Sep 17 00:00:00 2001 From: Ryan Kes <> Date: Tue, 1 Dec 2020 10:58:29 +0100 Subject: [PATCH] feat: updated fonts --- PKGBUILD | 4 ++-- config_desktop.h | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 56b95db..ce42519 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -9,7 +9,7 @@ url="http://dwm.suckless.org" arch=('i686' 'x86_64') license=('MIT') options=(zipman) -depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'dmenu') +depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'dmenu' 'ttf-jetbrains-mono' 'ttf-joypixels') optdepends=('gllock-git' 'higherlearning-st') conflicts=('dwm') install=dwm.install @@ -32,7 +32,7 @@ source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz "${_patches[@]}") md5sums=('9929845ccdec4d2cc191f16210dd7f3d' - '071eefef57eb3362989a4e3501d2de7b' + '418abafd90ec84255144dcea538a53fb' '939f403a71b6e85261d09fc3412269ee' '1dfc635c0f4c4c670beb20cbb7234c0f' '453062a348098b240e55f40623f14ed0' diff --git a/config_desktop.h b/config_desktop.h index 04f81ad..4f9b4b7 100644 --- a/config_desktop.h +++ b/config_desktop.h @@ -9,7 +9,11 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display static const int showsystray = 1; /* 0 means no systray */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Hack Nerd Font Mono:size=10" }; + +static const char *fonts[] = { + "Hack Nerd Font Mono:size=10:antialias=true:autohint=true", + "JoyPixels:pixelsize=10:antialias=true:autohint=true" +}; static const char dmenufont[] = "Hack Nerd Font Mono:size=10"; static const char col_gray1[] = "#222222"; static const char col_gray2[] = "#444444";