Compare commits
1 Commits
feat/xrand
...
feat/xreso
Author | SHA1 | Date | |
---|---|---|---|
4bb9184a41 |
51
config.def.h
51
config.def.h
@ -8,20 +8,6 @@
|
|||||||
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
|
static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
|
|
||||||
/*
|
|
||||||
* Override/adjust fontsize of choosen monitors:
|
|
||||||
*/
|
|
||||||
MonitorConfig monitors_config[] = {
|
|
||||||
// skip = fixed relative points size (monitor dpi)
|
|
||||||
// =0 : fixed absolute pixel size (default screen dpi)
|
|
||||||
// >0 : auto absolute pixel size (monitor dpi)
|
|
||||||
// <0 : auto relative points size (monitor dpi)
|
|
||||||
// {"DP-1", 0}, // BUG:(size=0): not restored to default after back'n'forth
|
|
||||||
{"HDMI-0~1", -20}, // BUG:(ignored DPI=220): = 20 is eqv to 10pt (DPI=110)
|
|
||||||
{"HDMI-0~2", -14},
|
|
||||||
};
|
|
||||||
float winmovethreshold = 0.6;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* What program is execed by st depends of these precedence rules:
|
* What program is execed by st depends of these precedence rules:
|
||||||
* 1: program passed with -e
|
* 1: program passed with -e
|
||||||
@ -184,6 +170,42 @@ static unsigned int defaultattr = 11;
|
|||||||
*/
|
*/
|
||||||
static uint forcemousemod = ShiftMask;
|
static uint forcemousemod = ShiftMask;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Xresources preferences to load at startup
|
||||||
|
*/
|
||||||
|
ResourcePref resources[] = {
|
||||||
|
{ "font", STRING, &font },
|
||||||
|
{ "color0", STRING, &colorname[0] },
|
||||||
|
{ "color1", STRING, &colorname[1] },
|
||||||
|
{ "color2", STRING, &colorname[2] },
|
||||||
|
{ "color3", STRING, &colorname[3] },
|
||||||
|
{ "color4", STRING, &colorname[4] },
|
||||||
|
{ "color5", STRING, &colorname[5] },
|
||||||
|
{ "color6", STRING, &colorname[6] },
|
||||||
|
{ "color7", STRING, &colorname[7] },
|
||||||
|
{ "color8", STRING, &colorname[8] },
|
||||||
|
{ "color9", STRING, &colorname[9] },
|
||||||
|
{ "color10", STRING, &colorname[10] },
|
||||||
|
{ "color11", STRING, &colorname[11] },
|
||||||
|
{ "color12", STRING, &colorname[12] },
|
||||||
|
{ "color13", STRING, &colorname[13] },
|
||||||
|
{ "color14", STRING, &colorname[14] },
|
||||||
|
{ "color15", STRING, &colorname[15] },
|
||||||
|
{ "background", STRING, &colorname[256] },
|
||||||
|
{ "foreground", STRING, &colorname[257] },
|
||||||
|
{ "cursorColor", STRING, &colorname[258] },
|
||||||
|
{ "termname", STRING, &termname },
|
||||||
|
{ "shell", STRING, &shell },
|
||||||
|
{ "minlatency", INTEGER, &minlatency },
|
||||||
|
{ "maxlatency", INTEGER, &maxlatency },
|
||||||
|
{ "blinktimeout", INTEGER, &blinktimeout },
|
||||||
|
{ "bellvolume", INTEGER, &bellvolume },
|
||||||
|
{ "tabspaces", INTEGER, &tabspaces },
|
||||||
|
{ "borderpx", INTEGER, &borderpx },
|
||||||
|
{ "cwscale", FLOAT, &cwscale },
|
||||||
|
{ "chscale", FLOAT, &chscale },
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Internal mouse shortcuts.
|
* Internal mouse shortcuts.
|
||||||
* Beware that overloading Button1 will disable the selection.
|
* Beware that overloading Button1 will disable the selection.
|
||||||
@ -210,7 +232,6 @@ static Shortcut shortcuts[] = {
|
|||||||
{ TERMMOD, XK_Prior, zoom, {.f = +1} },
|
{ TERMMOD, XK_Prior, zoom, {.f = +1} },
|
||||||
{ TERMMOD, XK_Next, zoom, {.f = -1} },
|
{ TERMMOD, XK_Next, zoom, {.f = -1} },
|
||||||
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
|
{ TERMMOD, XK_Home, zoomreset, {.f = 0} },
|
||||||
{ TERMMOD, XK_End, refreshxrandr, {.i = 0} },
|
|
||||||
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
|
{ TERMMOD, XK_C, clipcopy, {.i = 0} },
|
||||||
{ TERMMOD, XK_V, clippaste, {.i = 0} },
|
{ TERMMOD, XK_V, clippaste, {.i = 0} },
|
||||||
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
|
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
|
||||||
|
@ -20,8 +20,6 @@ LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \
|
|||||||
`$(PKG_CONFIG) --libs fontconfig` \
|
`$(PKG_CONFIG) --libs fontconfig` \
|
||||||
`$(PKG_CONFIG) --libs freetype2`
|
`$(PKG_CONFIG) --libs freetype2`
|
||||||
|
|
||||||
LIBS += -lXrandr
|
|
||||||
|
|
||||||
# flags
|
# flags
|
||||||
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
|
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
|
||||||
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
|
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
|
||||||
|
263
x.c
263
x.c
@ -14,7 +14,7 @@
|
|||||||
#include <X11/keysym.h>
|
#include <X11/keysym.h>
|
||||||
#include <X11/Xft/Xft.h>
|
#include <X11/Xft/Xft.h>
|
||||||
#include <X11/XKBlib.h>
|
#include <X11/XKBlib.h>
|
||||||
#include <X11/extensions/Xrandr.h>
|
#include <X11/Xresource.h>
|
||||||
|
|
||||||
char *argv0;
|
char *argv0;
|
||||||
#include "arg.h"
|
#include "arg.h"
|
||||||
@ -46,18 +46,18 @@ typedef struct {
|
|||||||
signed char appcursor; /* application cursor */
|
signed char appcursor; /* application cursor */
|
||||||
} Key;
|
} Key;
|
||||||
|
|
||||||
typedef struct {
|
/* Xresources preferences */
|
||||||
const char *name;
|
enum resource_type {
|
||||||
float defaultfontsize;
|
STRING = 0,
|
||||||
} MonitorConfig;
|
INTEGER = 1,
|
||||||
|
FLOAT = 2
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Atom name;
|
char *name;
|
||||||
int x, y, w, h;
|
enum resource_type type;
|
||||||
float defaultfontsize, usedfontsize;
|
void *dst;
|
||||||
} MonitorInfo;
|
} ResourcePref;
|
||||||
|
|
||||||
static void refreshxrandr(const Arg *dummy);
|
|
||||||
|
|
||||||
/* X modifiers */
|
/* X modifiers */
|
||||||
#define XK_ANY_MOD UINT_MAX
|
#define XK_ANY_MOD UINT_MAX
|
||||||
@ -229,11 +229,6 @@ static void (*handler[LASTEvent])(XEvent *) = {
|
|||||||
[SelectionRequest] = selrequest,
|
[SelectionRequest] = selrequest,
|
||||||
};
|
};
|
||||||
|
|
||||||
static double defaultrelfontsize = 0;
|
|
||||||
static MonitorInfo *monitors_info = NULL;
|
|
||||||
static int monitors_num = 0;
|
|
||||||
static int prev_mindex = -1;
|
|
||||||
|
|
||||||
/* Globals */
|
/* Globals */
|
||||||
static DC dc;
|
static DC dc;
|
||||||
static XWindow xw;
|
static XWindow xw;
|
||||||
@ -878,8 +873,8 @@ xclear(int x1, int y1, int x2, int y2)
|
|||||||
void
|
void
|
||||||
xhints(void)
|
xhints(void)
|
||||||
{
|
{
|
||||||
XClassHint class = {opt_name ? opt_name : termname,
|
XClassHint class = {opt_name ? opt_name : "st",
|
||||||
opt_class ? opt_class : termname};
|
opt_class ? opt_class : "St"};
|
||||||
XWMHints wm = {.flags = InputHint, .input = 1};
|
XWMHints wm = {.flags = InputHint, .input = 1};
|
||||||
XSizeHints *sizeh;
|
XSizeHints *sizeh;
|
||||||
|
|
||||||
@ -1154,8 +1149,6 @@ xinit(int cols, int rows)
|
|||||||
pid_t thispid = getpid();
|
pid_t thispid = getpid();
|
||||||
XColor xmousefg, xmousebg;
|
XColor xmousefg, xmousebg;
|
||||||
|
|
||||||
if (!(xw.dpy = XOpenDisplay(NULL)))
|
|
||||||
die("can't open display\n");
|
|
||||||
xw.scr = XDefaultScreen(xw.dpy);
|
xw.scr = XDefaultScreen(xw.dpy);
|
||||||
xw.vis = XDefaultVisual(xw.dpy, xw.scr);
|
xw.vis = XDefaultVisual(xw.dpy, xw.scr);
|
||||||
|
|
||||||
@ -1772,144 +1765,6 @@ xseturgency(int add)
|
|||||||
XFree(h);
|
XFree(h);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
cachemonitorinfo()
|
|
||||||
{
|
|
||||||
int prev_num = monitors_num;
|
|
||||||
MonitorInfo *prev_info = monitors_info;
|
|
||||||
XRRMonitorInfo *xmonitors = XRRGetMonitors(xw.dpy, XRootWindow(xw.dpy, xw.scr), 1, &monitors_num);
|
|
||||||
if (!monitors_num)
|
|
||||||
die("xrandr found no monitors");
|
|
||||||
|
|
||||||
monitors_info = xmalloc(monitors_num * sizeof(MonitorInfo));
|
|
||||||
|
|
||||||
for (int i = 0; i < monitors_num; ++i) {
|
|
||||||
XRRMonitorInfo *xm = &xmonitors[i];
|
|
||||||
MonitorInfo *m = &monitors_info[i];
|
|
||||||
|
|
||||||
m->name = xm->name;
|
|
||||||
m->x = xm->x;
|
|
||||||
m->y = xm->y;
|
|
||||||
m->w = xm->width;
|
|
||||||
m->h = xm->height;
|
|
||||||
|
|
||||||
float px_mm = ((float)m->w / xm->mwidth + (float)m->h / xm->mheight) / 2;
|
|
||||||
float px_pt = 25.4 * px_mm / 72;
|
|
||||||
m->defaultfontsize = defaultrelfontsize * px_pt;
|
|
||||||
|
|
||||||
// Override defaultfontsize (dpi) by user config
|
|
||||||
char *name = XGetAtomName(xw.dpy, xm->name);
|
|
||||||
for (int j = 0; j < LEN(monitors_config); ++j)
|
|
||||||
if (!strcmp(name, monitors_config[j].name)) {
|
|
||||||
m->defaultfontsize = monitors_config[j].defaultfontsize;
|
|
||||||
if (m->defaultfontsize < 0)
|
|
||||||
m->defaultfontsize *= -px_pt;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
// fprintf(stderr, "%s: %fpx, %f\n", name, m->defaultfontsize, m->usedfontsize);
|
|
||||||
XFree(name);
|
|
||||||
|
|
||||||
// Restore usedfontsize (zoom) after re-cache for monitors with the same name
|
|
||||||
m->usedfontsize = m->defaultfontsize;
|
|
||||||
for (int j = 0; j < prev_num; ++j)
|
|
||||||
if (prev_info[j].name == m->name) {
|
|
||||||
m->usedfontsize = prev_info[j].usedfontsize;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
XRRFreeMonitors(xmonitors);
|
|
||||||
free(prev_info);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
getmonitorindex_threshold(int w, int h, int x, int y)
|
|
||||||
{
|
|
||||||
int mindex = -1;
|
|
||||||
float fontsize = 0;
|
|
||||||
int thresholdarea = winmovethreshold * w * h;
|
|
||||||
|
|
||||||
for (int i = 0; i < monitors_num; ++i) {
|
|
||||||
MonitorInfo *m = &monitors_info[i];
|
|
||||||
int overlap_w = MAX(0, MIN(x + w, m->x + m->w) - MAX(x, m->x));
|
|
||||||
int overlap_h = MAX(0, MIN(y + h, m->y + m->h) - MAX(y, m->y));
|
|
||||||
int area = overlap_w * overlap_h;
|
|
||||||
// Choose monitor with largest dpi (defaultfontsize)
|
|
||||||
// from all "mirrored"/overlapped (e.g. projector)
|
|
||||||
if (area >= thresholdarea && fontsize < m->defaultfontsize) {
|
|
||||||
fontsize = m->defaultfontsize;
|
|
||||||
mindex = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return mindex;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
getmonitorindex_nearest(int w, int h, int x, int y)
|
|
||||||
{
|
|
||||||
int mindex = -1;
|
|
||||||
float fontsize = 0;
|
|
||||||
int overlaparea = 0;
|
|
||||||
|
|
||||||
for (int i = 0; i < monitors_num; ++i) {
|
|
||||||
MonitorInfo *m = &monitors_info[i];
|
|
||||||
int overlap_w = MAX(0, MIN(x + w, m->x + m->w) - MAX(x, m->x));
|
|
||||||
int overlap_h = MAX(0, MIN(y + h, m->y + m->h) - MAX(y, m->y));
|
|
||||||
int area = overlap_w * overlap_h;
|
|
||||||
// Choose monitor with largest overlapping area
|
|
||||||
// e.g. when "st" is initially spawned in-between monitors
|
|
||||||
if (area > overlaparea) {
|
|
||||||
overlaparea = area;
|
|
||||||
mindex = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return mindex;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
adjustmonitorfontsize(int mindex)
|
|
||||||
{
|
|
||||||
if (mindex < 0 || prev_mindex == mindex)
|
|
||||||
return;
|
|
||||||
// Save zoom of current monitor before switching
|
|
||||||
if (prev_mindex >= 0)
|
|
||||||
monitors_info[prev_mindex].usedfontsize = usedfontsize;
|
|
||||||
|
|
||||||
defaultfontsize = monitors_info[mindex].defaultfontsize;
|
|
||||||
// fprintf(stderr, "Crossing: %fpx\n", defaultfontsize);
|
|
||||||
|
|
||||||
// NOTE: do nothing if font size differs by less than 1%
|
|
||||||
double fontsize = monitors_info[mindex].usedfontsize;
|
|
||||||
double delta = 0.01 * usedfontsize;
|
|
||||||
if (!BETWEEN(fontsize - usedfontsize, -delta, delta)) {
|
|
||||||
// fprintf(stderr, "Adjusted: %fpx\n", fontsize);
|
|
||||||
xunloadfonts();
|
|
||||||
xloadfonts(usedfont, fontsize);
|
|
||||||
}
|
|
||||||
prev_mindex = mindex;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
refreshxrandr(const Arg *dummy)
|
|
||||||
{
|
|
||||||
// Reset index to detect change of window association on "xrandr ... --primary"
|
|
||||||
// otherwise: zoom won't be saved on switching and new font size won't be loaded
|
|
||||||
// CRIT!!! event from xrandr may place another monitor into same index
|
|
||||||
if (prev_mindex >= 0)
|
|
||||||
monitors_info[prev_mindex].usedfontsize = usedfontsize;
|
|
||||||
prev_mindex = -1;
|
|
||||||
|
|
||||||
XWindowAttributes xattr = {0};
|
|
||||||
cachemonitorinfo();
|
|
||||||
XGetWindowAttributes(xw.dpy, xw.win, &xattr);
|
|
||||||
|
|
||||||
int mindex = getmonitorindex_threshold(xattr.width, xattr.height, xattr.x, xattr.y);
|
|
||||||
if (mindex < 0)
|
|
||||||
mindex = getmonitorindex_nearest(xattr.width, xattr.height, xattr.x, xattr.y);
|
|
||||||
adjustmonitorfontsize(mindex);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
xbell(void)
|
xbell(void)
|
||||||
{
|
{
|
||||||
@ -2062,14 +1917,6 @@ cmessage(XEvent *e)
|
|||||||
void
|
void
|
||||||
resize(XEvent *e)
|
resize(XEvent *e)
|
||||||
{
|
{
|
||||||
// BAD: no resize on monitor plug/unplug/reconfigure -- until window itself is kept in the same place
|
|
||||||
// NOTE: no resize event on zoomabs()
|
|
||||||
// fprintf(stderr, "Resize: %dx%d+%d+%d\n",
|
|
||||||
// e->xconfigure.width, e->xconfigure.height, e->xconfigure.x, e->xconfigure.y);
|
|
||||||
|
|
||||||
adjustmonitorfontsize(getmonitorindex_threshold(
|
|
||||||
e->xconfigure.width, e->xconfigure.height, e->xconfigure.x, e->xconfigure.y));
|
|
||||||
|
|
||||||
if (e->xconfigure.width == win.w && e->xconfigure.height == win.h)
|
if (e->xconfigure.width == win.w && e->xconfigure.height == win.h)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -2102,22 +1949,6 @@ run(void)
|
|||||||
}
|
}
|
||||||
} while (ev.type != MapNotify);
|
} while (ev.type != MapNotify);
|
||||||
|
|
||||||
int rr_event_base, rr_error_base, rr_major, rr_minor;
|
|
||||||
if (!XRRQueryExtension (xw.dpy, &rr_event_base, &rr_error_base) ||
|
|
||||||
!XRRQueryVersion (xw.dpy, &rr_major, &rr_minor) ||
|
|
||||||
rr_major < 1 || (rr_major == 1 && rr_minor < 5))
|
|
||||||
{
|
|
||||||
die("RandR 1.5 extension isn't available\n");
|
|
||||||
}
|
|
||||||
XRRSelectInput(xw.dpy, xw.win, RRCrtcChangeNotifyMask);
|
|
||||||
|
|
||||||
// WARN: can query actual window size/pos only after window is mapped and its width/height are adjusted by WM
|
|
||||||
// * x/y are WM-dependent and can't be determined beforehand anyway
|
|
||||||
// * defaultfontsize isn't available until font is loaded and actual Fc*() size queried
|
|
||||||
// BAD: fonts on startup are always reloaded -- how to specify their size beforehand ?
|
|
||||||
FcPatternGetDouble(dc.font.match->pattern, FC_SIZE, 0, &defaultrelfontsize);
|
|
||||||
refreshxrandr(0);
|
|
||||||
|
|
||||||
ttyfd = ttynew(opt_line, shell, opt_io, opt_cmd);
|
ttyfd = ttynew(opt_line, shell, opt_io, opt_cmd);
|
||||||
cresize(w, h);
|
cresize(w, h);
|
||||||
|
|
||||||
@ -2149,16 +1980,6 @@ run(void)
|
|||||||
XNextEvent(xw.dpy, &ev);
|
XNextEvent(xw.dpy, &ev);
|
||||||
if (XFilterEvent(&ev, None))
|
if (XFilterEvent(&ev, None))
|
||||||
continue;
|
continue;
|
||||||
if (LASTEvent <= ev.type) {
|
|
||||||
if (rr_event_base + RRNotify == ev.type &&
|
|
||||||
RRNotify_CrtcChange == ((XRRNotifyEvent *)&ev)->subtype)
|
|
||||||
{
|
|
||||||
XRRUpdateConfiguration(&ev);
|
|
||||||
// fprintf(stderr, "Monitor change: %d > %d\n", rr_event_base, LASTEvent);
|
|
||||||
refreshxrandr(0);
|
|
||||||
}
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (handler[ev.type])
|
if (handler[ev.type])
|
||||||
(handler[ev.type])(&ev);
|
(handler[ev.type])(&ev);
|
||||||
}
|
}
|
||||||
@ -2205,6 +2026,59 @@ run(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
resource_load(XrmDatabase db, char *name, enum resource_type rtype, void *dst)
|
||||||
|
{
|
||||||
|
char **sdst = dst;
|
||||||
|
int *idst = dst;
|
||||||
|
float *fdst = dst;
|
||||||
|
|
||||||
|
char fullname[256];
|
||||||
|
char fullclass[256];
|
||||||
|
char *type;
|
||||||
|
XrmValue ret;
|
||||||
|
|
||||||
|
snprintf(fullname, sizeof(fullname), "%s.%s",
|
||||||
|
opt_name ? opt_name : "st", name);
|
||||||
|
snprintf(fullclass, sizeof(fullclass), "%s.%s",
|
||||||
|
opt_class ? opt_class : "St", name);
|
||||||
|
fullname[sizeof(fullname) - 1] = fullclass[sizeof(fullclass) - 1] = '\0';
|
||||||
|
|
||||||
|
XrmGetResource(db, fullname, fullclass, &type, &ret);
|
||||||
|
if (ret.addr == NULL || strncmp("String", type, 64))
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
switch (rtype) {
|
||||||
|
case STRING:
|
||||||
|
*sdst = ret.addr;
|
||||||
|
break;
|
||||||
|
case INTEGER:
|
||||||
|
*idst = strtoul(ret.addr, NULL, 10);
|
||||||
|
break;
|
||||||
|
case FLOAT:
|
||||||
|
*fdst = strtof(ret.addr, NULL);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
config_init(void)
|
||||||
|
{
|
||||||
|
char *resm;
|
||||||
|
XrmDatabase db;
|
||||||
|
ResourcePref *p;
|
||||||
|
|
||||||
|
XrmInitialize();
|
||||||
|
resm = XResourceManagerString(xw.dpy);
|
||||||
|
if (!resm)
|
||||||
|
return;
|
||||||
|
|
||||||
|
db = XrmGetStringDatabase(resm);
|
||||||
|
for (p = resources; p < resources + LEN(resources); p++)
|
||||||
|
resource_load(db, p->name, p->type, p->dst);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
usage(void)
|
usage(void)
|
||||||
{
|
{
|
||||||
@ -2278,6 +2152,11 @@ run:
|
|||||||
|
|
||||||
setlocale(LC_CTYPE, "");
|
setlocale(LC_CTYPE, "");
|
||||||
XSetLocaleModifiers("");
|
XSetLocaleModifiers("");
|
||||||
|
|
||||||
|
if(!(xw.dpy = XOpenDisplay(NULL)))
|
||||||
|
die("Can't open display\n");
|
||||||
|
|
||||||
|
config_init();
|
||||||
cols = MAX(cols, 1);
|
cols = MAX(cols, 1);
|
||||||
rows = MAX(rows, 1);
|
rows = MAX(rows, 1);
|
||||||
tnew(cols, rows);
|
tnew(cols, rows);
|
||||||
|
Reference in New Issue
Block a user