Skip to content

Commit 290f771

Browse files
committed
docs: add terminfo section to Linux installation guide
Fixes #1219
1 parent 8f25830 commit 290f771

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/docs/install/linux.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,24 @@ For a less declarative installation:
8080
nix profile install github:raphamorim/rio/main
8181
```
8282

83+
## Terminfo
84+
85+
To ensure Rio works correctly, the "rio" terminfo must be installed. Most package managers will install this automatically, but you can verify it's present:
86+
87+
```bash
88+
infocmp rio
89+
```
90+
91+
If the command returns an error, install the terminfo manually:
92+
93+
```bash
94+
curl -o rio.terminfo https://raw.githubusercontent.com/raphamorim/rio/main/misc/rio.terminfo
95+
sudo tic -xe rio rio.terminfo
96+
rm rio.terminfo
97+
```
98+
99+
For more details, see the [Terminfo documentation](/docs/install/terminfo).
100+
83101
## Manual Pages
84102

85103
After installing Rio, you can optionally install manual pages for offline documentation:

0 commit comments

Comments
 (0)