Add disable_bold_italic_fonts patch
From https://st.suckless.org/patches/disable_bold_italic_fonts.
This commit is contained in:
parent
75778848c9
commit
6297a32ecd
1 changed files with 10 additions and 0 deletions
|
@ -17,6 +17,11 @@ with lib;
|
||||||
(st.override {
|
(st.override {
|
||||||
conf = ''
|
conf = ''
|
||||||
static char *font = "MesloLGSNerdFontMono:pixelsize=16:antialias=true:autohint=true";
|
static char *font = "MesloLGSNerdFontMono:pixelsize=16:antialias=true:autohint=true";
|
||||||
|
|
||||||
|
int disablebold = 1;
|
||||||
|
int disableitalic = 1;
|
||||||
|
int disableroman = 1;
|
||||||
|
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
static char *shell = "/bin/sh";
|
static char *shell = "/bin/sh";
|
||||||
|
@ -353,6 +358,11 @@ with lib;
|
||||||
'';
|
'';
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://st.suckless.org/patches/disable_bold_italic_fonts/st-disable-bold-italic-fonts-0.8.2.diff";
|
||||||
|
sha256 = "PG96QMqbX3Fr0EvDmF4lm/J3gj18eyBfm1bJ3M7plvQ=";
|
||||||
|
})
|
||||||
|
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
url = "https://st.suckless.org/patches/anysize/st-anysize-20220718-baa9357.diff";
|
url = "https://st.suckless.org/patches/anysize/st-anysize-20220718-baa9357.diff";
|
||||||
sha256 = "yx9VSwmPACx3EN3CAdQkxeoJKJxQ6ziC9tpBcoWuWHc=";
|
sha256 = "yx9VSwmPACx3EN3CAdQkxeoJKJxQ6ziC9tpBcoWuWHc=";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue