Pushing st changes
This commit is contained in:
parent
d1da014b09
commit
2848c9bb2f
2 changed files with 3 additions and 3 deletions
2
Makefile
2
Makefile
|
@ -1,11 +1,11 @@
|
||||||
# st - simple terminal
|
# st - simple terminal
|
||||||
# See LICENSE file for copyright and license details.
|
# See LICENSE file for copyright and license details.
|
||||||
.POSIX:
|
|
||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
SRC = st.c x.c boxdraw.c
|
SRC = st.c x.c boxdraw.c
|
||||||
OBJ = $(SRC:.c=.o)
|
OBJ = $(SRC:.c=.o)
|
||||||
|
PREFIX = /usr/local
|
||||||
|
|
||||||
all: options st
|
all: options st
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
|
||||||
*/
|
*/
|
||||||
static char *font = "Iosevka Nerd Font-10:antialias=true:autohint=true";
|
static char *font = "Iosevka Nerd Font Mono-10:antialias=true:autohint=true";
|
||||||
static char *italicfont = "Latin Modern Mono-10:antialias=true:autohint=true";
|
static char *italicfont = "Latin Modern Mono-10:antialias=true:autohint=true";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ static float chscale = 1.0;
|
||||||
*
|
*
|
||||||
* More advanced example: L" `'\"()[]{}"
|
* More advanced example: L" `'\"()[]{}"
|
||||||
*/
|
*/
|
||||||
wchar_t *worddelimiters = L" ";
|
wchar_t *worddelimiters = L" │";
|
||||||
|
|
||||||
/* selection timeouts (in milliseconds) */
|
/* selection timeouts (in milliseconds) */
|
||||||
static unsigned int doubleclicktimeout = 300;
|
static unsigned int doubleclicktimeout = 300;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue