aboutsummaryrefslogtreecommitdiffstats
path: root/fbcon.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2019-01-30 20:52:08 +0100
committerGerd Hoffmann <kraxel@redhat.com>2019-01-30 20:52:08 +0100
commit2764d42d490c13e38ef2cd06b2eb245045d8111e (patch)
treeac221599c65bb8f3b4946967b36ce79eb5ad32ad /fbcon.c
parent084cd1b40f5e2fa3088b23840d3021cd5588795e (diff)
downloadfbida-2764d42d490c13e38ef2cd06b2eb245045d8111e.tar.gz
fill winsize
Diffstat (limited to 'fbcon.c')
-rw-r--r--fbcon.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/fbcon.c b/fbcon.c
index 9c530dc..5214640 100644
--- a/fbcon.c
+++ b/fbcon.c
@@ -284,7 +284,8 @@ static void tmt_callback(tmt_msg_t m, TMT *vt, const void *a, void *p)
int main(int argc, char *argv[])
{
pid_t child;
- int pty, input, rows, cols;
+ int pty, input;
+ struct winsize win;
setlocale(LC_ALL,"");
@@ -334,15 +335,17 @@ int main(int argc, char *argv[])
state = xkb_state_new(map);
/* init terminal emulation */
- cols = gfx->hdisplay / extents.max_x_advance;
- rows = gfx->vdisplay / extents.height;
- vt = tmt_open(rows, cols, tmt_callback, NULL, NULL);
- child = forkpty(&pty, NULL, NULL, NULL);
+ win.ws_col = gfx->hdisplay / extents.max_x_advance;
+ win.ws_row = gfx->vdisplay / extents.height;
+ win.ws_xpixel = extents.max_x_advance;
+ win.ws_ypixel = extents.height;
+ vt = tmt_open(win.ws_row, win.ws_col, tmt_callback, NULL, NULL);
+ child = forkpty(&pty, NULL, NULL, &win);
if (0 == child) {
/* child */
char lines[10], columns[10];
- snprintf(lines, sizeof(lines), "%d", rows);
- snprintf(columns, sizeof(columns), "%d", cols);
+ snprintf(lines, sizeof(lines), "%d", win.ws_row);
+ snprintf(columns, sizeof(columns), "%d", win.ws_col);
setenv("TERM", "ansi", true);
setenv("LINES", lines, true);
setenv("COLUMNS", columns, true);