1
0
mirror of https://github.com/alrayyes/dwm synced 2023-11-14 15:56:31 +00:00

feat: updated fonts

This commit is contained in:
Ryan Kes 2020-12-01 10:58:29 +01:00
parent bde1fc1e63
commit ce769c332f
2 changed files with 7 additions and 3 deletions

View File

@ -9,7 +9,7 @@ url="http://dwm.suckless.org"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
license=('MIT') license=('MIT')
options=(zipman) options=(zipman)
depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'dmenu') depends=('libx11' 'libxinerama' 'libxft' 'freetype2' 'dmenu' 'ttf-jetbrains-mono' 'ttf-joypixels')
optdepends=('gllock-git' 'higherlearning-st') optdepends=('gllock-git' 'higherlearning-st')
conflicts=('dwm') conflicts=('dwm')
install=dwm.install install=dwm.install
@ -32,7 +32,7 @@ source=(http://dl.suckless.org/dwm/dwm-$pkgver.tar.gz
"${_patches[@]}") "${_patches[@]}")
md5sums=('9929845ccdec4d2cc191f16210dd7f3d' md5sums=('9929845ccdec4d2cc191f16210dd7f3d'
'071eefef57eb3362989a4e3501d2de7b' '418abafd90ec84255144dcea538a53fb'
'939f403a71b6e85261d09fc3412269ee' '939f403a71b6e85261d09fc3412269ee'
'1dfc635c0f4c4c670beb20cbb7234c0f' '1dfc635c0f4c4c670beb20cbb7234c0f'
'453062a348098b240e55f40623f14ed0' '453062a348098b240e55f40623f14ed0'

View File

@ -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 showsystray = 1; /* 0 means no systray */
static const int showbar = 1; /* 0 means no bar */ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom 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 dmenufont[] = "Hack Nerd Font Mono:size=10";
static const char col_gray1[] = "#222222"; static const char col_gray1[] = "#222222";
static const char col_gray2[] = "#444444"; static const char col_gray2[] = "#444444";