Skip to content

Commit fe8b1d0

Browse files
Kabuki94claude
andcommitted
fix(terminal): default 80x20 portal feel; frame 79x19
Per operator: "let's actually try 80x20 as the GLOBAL DEFAULTS!! Make sure MiOS Dashboards/fastfetch/hints can all fit and print in an 80x20 window!!!". mios.toml [terminal]: rows = 20 (was 30; 30 = the alternative "console" feel) frame_height = 19 (= rows - 1) mios-config.html: terminal section placeholders updated to 20/19; legend "(80x20 = MiOS portal default; 80x30 for taller console)". The dashboard rendering side (Show-MiosDashboard in the MiOS PS profile body) lands in mios-bootstrap concurrently with a compact mode that fits 80x20: 1-line title (no multi-line ASCII logo), paired-column fastfetch capped to available rows, 1-line verb-only hints band. ~10 rows total, fits cleanly in frame_height 19 with 9 rows of slack. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 75725e9 commit fe8b1d0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

usr/share/mios/configurator/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,17 +468,17 @@ <h1>MiOS configurator <span class="v" id="v-meta">schema 1.2.0 / mios 0.2.4</spa
468468
</p>
469469
<div class="grid">
470470
<fieldset>
471-
<legend>terminal (80x30 = MiOS default; 80x20 = portal feel)</legend>
471+
<legend>terminal (80x20 = MiOS portal default; 80x30 for taller console)</legend>
472472
<label for="f-term-cols">cols</label>
473473
<input type="text" id="f-term-cols" data-key="terminal.cols" data-type="int" placeholder="80">
474474
<label for="f-term-rows">rows</label>
475-
<input type="text" id="f-term-rows" data-key="terminal.rows" data-type="int" placeholder="30">
475+
<input type="text" id="f-term-rows" data-key="terminal.rows" data-type="int" placeholder="20">
476476
<label for="f-term-scroll">scrollback_rows</label>
477477
<input type="text" id="f-term-scroll" data-key="terminal.scrollback_rows" data-type="int" placeholder="9000">
478478
<label for="f-term-fw">frame_width (cols - 1, borderless fit)</label>
479479
<input type="text" id="f-term-fw" data-key="terminal.frame_width" data-type="int" placeholder="79">
480480
<label for="f-term-fh">frame_height (rows - 1)</label>
481-
<input type="text" id="f-term-fh" data-key="terminal.frame_height" data-type="int" placeholder="29">
481+
<input type="text" id="f-term-fh" data-key="terminal.frame_height" data-type="int" placeholder="19">
482482
</fieldset>
483483
<fieldset>
484484
<legend>theme</legend>

usr/share/mios/mios.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1296,10 +1296,10 @@ disk_size_gb = 100
12961296
# ----------------------------------------------------------------------------
12971297
[terminal]
12981298
cols = 80
1299-
rows = 30 # 30 = MiOS default; bump to 20 for a tighter portal-feel
1299+
rows = 20 # 20 = MiOS portal-feel default; 30 for taller "console" feel
13001300
scrollback_rows = 9000
13011301
frame_width = 79 # cols - 1 -- dashboard box width
1302-
frame_height = 29 # rows - 1 -- dashboard box max height
1302+
frame_height = 19 # rows - 1 -- dashboard box max height
13031303

13041304
# ----------------------------------------------------------------------------
13051305
# [theme] -- visual styling tokens. The [colors] table above defines

0 commit comments

Comments
 (0)