Skip to content

Commit 0dca15f

Browse files
author
__
committed
fixup! Merge remote-tracking branch 'suck/master'
1 parent 112edee commit 0dca15f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ st: $(OBJ)
3030
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
3131

3232
clean:
33-
rm -f st $(OBJ) st-$(VERSION).tar.gz
33+
rm -f st $(OBJ) st-$(VERSION).tar.gz config.h
3434

3535
dist: clean
3636
mkdir -p st-$(VERSION)

config.def.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
77
*/
8-
static char *font[] = "Liberation Mono:pixelsize=13:antialias=false:autohint=false";
8+
static char *font = "DejaVu Sans Mono:style=Book:pixelsize=14";
99
static int borderpx = 0;
1010

1111
/*
@@ -191,7 +191,6 @@ static Shortcut shortcuts[] = {
191191
{ MODKEY|ShiftMask, XK_Insert, clippaste, {.i = 0} },
192192
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
193193
{ TERMMOD, XK_V, clippaste, {.i = 0} },
194-
{ TERMMOD, XK_I, iso14755, {.i = 0} },
195194
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
196195
{ ShiftMask, XK_Insert, selpaste, {.i = 0} },
197196
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0} },

0 commit comments

Comments
 (0)