avoid boxdraw patch for now
This commit is contained in:
parent
8542f353ca
commit
39d5aae8fb
2 changed files with 2 additions and 10 deletions
8
config.h
8
config.h
|
@ -60,14 +60,6 @@ static unsigned int blinktimeout = 0;
|
|||
*/
|
||||
static unsigned int cursorthickness = 1;
|
||||
|
||||
/*
|
||||
* 1: custom-draw (without using the font) most of the lines/blocks characters
|
||||
* for gapless alignment between cells. This includes all the codepoints at
|
||||
* U+2500 - U+259F except dashes, diagonals and shades.
|
||||
* 0: disable (render all glyphs normally from the font).
|
||||
*/
|
||||
const int boxdraw = 1;
|
||||
|
||||
/*
|
||||
* bell volume. It must be a value between -100 and 100. Use 0 for disabling
|
||||
* it
|
||||
|
|
4
makest
4
makest
|
@ -4,7 +4,7 @@ ST_REPO=https://git.suckless.org/st
|
|||
ST_SRC=$PWD/st
|
||||
ST_CFG=$PWD/config.h
|
||||
PATCHLIST=(
|
||||
st-boxdraw.patch
|
||||
#st-boxdraw.patch
|
||||
st-bright-bold-text.patch
|
||||
st-disable-bold-italic-fonts.patch
|
||||
st-disable-intensity-styles.patch
|
||||
|
@ -26,7 +26,7 @@ fi
|
|||
cp $ST_CFG .
|
||||
|
||||
for patch in $PATCHLIST; do
|
||||
patch -p1 -i ../$patch
|
||||
patch --no-backup-if-mismatch -p1 -i ../$patch
|
||||
done
|
||||
|
||||
make $MAKE_OPTS ${*:-install}
|
||||
|
|
Loading…
Reference in a new issue