No description
  • Go 96.6%
  • Lua 3.4%
Find a file
2026-06-14 03:09:01 +01:00
.opencode chore: sync residual agent and skill configs 2026-06-14 03:09:01 +01:00
cmd/res-console chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
config chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
script chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
widgets init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
.gitignore chore: add .gitignore 2026-06-08 18:02:11 -07:00
go.mod init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
go.sum init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
input.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
menu.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_apps.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_help.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_main.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
menu_settings.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
model.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
mux.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
mux_scroll.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
mux_widgets.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
proc.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00
README docs: add README 2026-04-15 20:50:37 -07:00
statusbar.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
tab.go chore(console): update imports for core/lib/ reorganization 2026-06-08 20:44:03 -07:00
widgets.go init: residual/console — PTY multiplexer, lua scripting, res-console binary 2026-04-15 19:21:05 -07:00

residual/console
================

PTY multiplexer and primary terminal environment for residual.

packages:
  console/        mux, tabs, statusbar, menus, widget system, input handling.
                  uses raw I/O — not bubbletea — for full PTY pass-through.
  console/script/ lua scripting engine (gopher-lua). powers widgets and hooks.

widgets (lua):
  widgets/        built-in status bar widgets: clock, battery, memory, network,
                  brightness, storage, user, spacer.

binary:
  res-console     multi-tab PTY multiplexer with lua-extensible status bar.
                  keybindings: see docs/keymap.md in residual/core.
                  scripting:   see docs/scripting.md in residual/core.
                  usage: res-console [-shell path]

build:
  go build ./cmd/res-console

module:   git.merith.xyz/residual/console
requires: git.merith.xyz/residual/core, git.merith.xyz/residual/shell